export interface IAuthenticationHandler { tryLogin(username: string, password: string, totp?: string): Promise; needTotp(username: string): Promise; } export declare class AuthenticationLoader { private handlers; addAuthenticationHandler(authenticationHandler: IAuthenticationHandler): void; tryLogin(username: string, password: string, totpCode?: string): Promise; needTotp(username: string): Promise; } //# sourceMappingURL=index.d.ts.map