interface OAuthCommandOptions { provider: string; account?: string; noBrowser?: boolean; /** Cho iFlow: paste cookie thay vì OAuth flow. */ cookie?: string; } export declare function oauthCommand(options: OAuthCommandOptions): Promise; export declare function oauthListCommand(): Promise; export declare function oauthLogoutCommand(provider: string, account?: string): Promise; export {};