import { Command } from 'commander'; import { WebexBotCredentialManager } from '../credential-manager.js'; interface ActionOptions { pretty?: boolean; bot?: string; _credManager?: WebexBotCredentialManager; } interface ActionResult { success?: boolean; error?: string; bot_id?: string; bot_name?: string; valid?: boolean; bots?: Array<{ bot_id: string; bot_name: string; is_current: boolean; }>; } export declare function setAction(token: string, options: ActionOptions): Promise; export declare function clearAction(options: ActionOptions): Promise; export declare function statusAction(options: ActionOptions): Promise; export declare function listAction(options: ActionOptions): Promise; export declare function useAction(botId: string, options: ActionOptions): Promise; export declare function removeAction(botId: string, options: ActionOptions): Promise; export declare const authCommand: Command; export {}; //# sourceMappingURL=auth.d.ts.map