export interface CLIConfig { apiUrl?: string; } /** * Get CLI configuration (URL only, key is in keychain) */ export declare function getConfig(): Promise; /** * Save CLI configuration (URL only) */ export declare function saveConfig(config: CLIConfig): Promise; /** * Get API URL from config or environment */ export declare function getApiUrl(): Promise; /** * Get API key from keychain or environment */ export declare function getApiKey(): Promise; /** * Save API key to keychain */ export declare function setApiKey(apiKey: string): Promise; /** * Remove API key from keychain */ export declare function deleteApiKey(): Promise; //# sourceMappingURL=config.d.ts.map