import { Profile } from './profileConfig';
export declare class ProfileManager {
    private configPath;
    private config;
    constructor();
    private loadConfig;
    private saveConfig;
    listProfiles(): Promise<string[]>;
    getProfile(name: string): Promise<Profile>;
    createProfile(profile: Profile): Promise<void>;
    updateProfile(name: string, updates: Partial<Profile>): Promise<void>;
    deleteProfile(name: string): Promise<void>;
    getActiveProfile(): Promise<Profile>;
    setActiveProfile(name: string): Promise<void>;
}
