import { Profile, ProfileConfig } from '../types.js'; export declare function getConfig(): ProfileConfig; export declare function getProfiles(): Record; export declare function getProfile(name: string): Profile | undefined; export declare function saveProfile(profile: Profile): void; export declare function deleteProfile(name: string): boolean; export declare function getActiveProfile(): string | null; export declare function setActiveProfile(name: string | null): void; export declare function profileExists(name: string): boolean; export declare function getConfigPath(): string; export declare function resetConfig(): void; //# sourceMappingURL=config.d.ts.map