import type { Profile, ProjectConfig } from "../types/config.js"; export declare const DEFAULT_BASE_URL = "https://api.bland.ai"; export declare function getProfiles(): Record; export declare function getCurrentProfileName(): string; export declare function getCurrentProfile(): Profile; export declare function setProfile(name: string, profile: Profile): void; export declare function switchProfile(name: string): void; export declare function deleteProfile(name: string): void; export declare function getApiKey(): string; export declare function getBaseUrl(): string; export declare function saveApiKey(key: string, profileName?: string, baseUrl?: string): void; export declare function clearAuth(): void; export declare function isAuthenticated(): boolean; export declare function getClaudeApiKey(): string | null; export declare function saveClaudeApiKey(key: string): void; export declare function getOpenAiApiKey(): string | null; export declare function saveOpenAiApiKey(key: string): void; export declare function findProjectConfig(startDir?: string): string | null; export declare function readProjectConfig(dir?: string): ProjectConfig | null; export declare function writeProjectConfig(config: ProjectConfig, dir?: string): void; //# sourceMappingURL=config.d.ts.map