export declare function promptAddAnotherAccount(currentCount: number): Promise; export type LoginMode = 'add' | 'fresh'; export interface ExistingAccountInfo { email?: string; index: number; } export declare function promptLoginMode(existingAccounts: ExistingAccountInfo[]): Promise; export type AuthMethod = 'oauth' | 'apikey'; export declare function promptAuthMethod(): Promise; export declare function promptApiKey(): Promise; export declare function promptEmail(): Promise; export declare function promptOAuthCallback(): Promise;