import type { ProjectConfig } from './types.js'; export declare const CONFIG_FILENAME = ".clientcast.json"; export declare function configPath(projectDir: string): string; export declare function isInitialized(projectDir: string): boolean; export declare function loadConfig(projectDir: string): ProjectConfig; export declare function saveConfig(projectDir: string, config: ProjectConfig): void;