import { Profile } from './types'; export declare function addProfile(profile: Profile): Promise; export declare function removeProfile(profileName: string): Promise; export declare function getProfiles(): Promise; export declare function getActiveProfile(): Promise; export declare function setActiveProfile(profileName: string): Promise;