import type { IConfigCli } from '../types';
export declare const CONFIG_PATH: string;
export declare function getConfig(): Promise<IConfigCli>;
export declare function setConfig(config: IConfigCli): Promise<boolean>;
export declare function addConnection(host: string, port: number, pass: string): Promise<boolean>;
export declare function editConnection(index: number, host: string, port: number, pass: string): Promise<boolean>;
export declare function removeConnection(index: number): Promise<boolean>;
export declare function getConnection(index: number): Promise<import("../types").IConfigConnectionItem>;
//# sourceMappingURL=config.d.ts.map