export interface TypeCADConfig { entry?: string; kicad_cli?: string; kicad_path?: string; use_flatpak?: boolean; verbose?: boolean; [key: string]: unknown; } export declare function defineConfig(config: TypeCADConfig): TypeCADConfig; export declare function loadConfig(): TypeCADConfig; /** * Must be called between test cases that change the working directory or config file. */ export declare function clearConfigCache(): void; export declare class Config { get(key: string): string; set(key: string, value: string): boolean; } //# sourceMappingURL=config.d.ts.map