export declare const CONFIG_PATH: string;
export default class Config {
    ensureConfigFile(): Promise<void>;
    getConfig(key: string): Promise<any>;
    setConfig(key: string, value: string | object): Promise<void>;
    removeConfig(key: string): Promise<void>;
}
