export interface RemoteConfig {
    websocketHost?: string;
    hostname?: string;
}
export declare class ConfigManager {
    private configDir;
    private configFile;
    constructor();
    private ensureConfigDir;
    getConfig(): RemoteConfig;
    setConfig(key: keyof RemoteConfig, value: string): void;
    showConfig(): void;
}
//# sourceMappingURL=config-manager.d.ts.map