export interface IFallbackAuthChallenge { password(password: string | (() => string) | Promise): void; jwt(jwt: string | (() => string) | Promise): void; anonymous(displayName: string | (() => string) | Promise): void; cancel(): void; }