/** * Startup auth guard - ensures valid authentication before command execution. */ export interface EnsureAuthResult { /** Whether auth is now valid */ authenticated: boolean; /** Whether login flow was triggered */ loginTriggered: boolean; /** Whether token was refreshed */ tokenRefreshed: boolean; } export declare function ensureAuthenticated(): Promise;