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, name: string, isDefault?: boolean): Promise; export declare function editConnection(index: number, host: string, port: number, pass: string, name: string, isDefault?: boolean): Promise; export declare function removeConnection(index: number): Promise; export declare function getConnection(index: number): Promise; export declare function getConnectionByNameOrDefault(name: string | null): Promise; //# sourceMappingURL=config.d.ts.map