export interface McpConfig { refreshToken?: string; environment?: 'production' | 'staging'; apiKey?: string; agentInstallId?: string; agentInstallIdStaging?: string; } export declare function saveConfig(config: McpConfig): void; export declare function loadConfig(): McpConfig; export declare function getRefreshTokenFromFile(): string | null;