/** * CLI Authentication Helper * Determines which credentials to use based on environment */ export interface CliAuthResult { mode: 'apikey' | 'oauth'; token: string; email: string; baseUrl: string; cloudId?: string; userId?: string; debugInfo?: { isLocalDev: boolean; tokenLength: number; source: 'env' | 'session' | 'database'; }; } /** * Get authentication credentials for CLI commands */ export declare function getCliAuth(options?: { verbose?: boolean; }): Promise; /** * Validate that credentials are working */ export declare function validateAuth(auth: CliAuthResult): Promise; //# sourceMappingURL=auth-helper.d.ts.map