export { AUTH_DIR, AUTH_FILE, loadAuth, saveAuth, clearAuth, updateAuth, withSessionRefresh, type StoredAuth } from "./auth-store.js"; export declare function openBrowser(url: string): void; /** * HTML page shown in the browser after auth callback */ export declare function callbackHtml(success: boolean, error?: string): string; export declare const MCP_ENTRY: { command: string; args: string[]; }; export interface AgentConfig { name: string; configPath: string; mcpKey: string; wrapperKey?: string; /** Shell command to install MCP entry (e.g. `codex mcp add`). Skips JSON config parsing when set. */ cliInstall?: string; } export declare function getAgentConfigs(): AgentConfig[]; export declare function autoInstallMcp(): Promise; export declare function json(obj: unknown): string; export declare function slugify(text: string): string; export declare function detectExecutor(): string;