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