import type { CLIConfig } from '../types.js';
export declare function getConfig(dir?: string): Promise<CLIConfig>;
export declare function saveConfig(baseDir: string, config: Partial<CLIConfig>): Promise<void>;
export declare function resetConfig(baseDir: string): Promise<void>;
export declare function clearBuildLogs(baseDir: string, type: 'local' | 'shared' | 'both'): Promise<void>;
