export interface ExportConfigResult { ok: boolean; /** Path written to */ path?: string; error?: string; } export interface ImportConfigResult { ok: boolean; error?: string; } export declare function exportConfig(exportPath: string, configPath: string): Promise; export declare function importConfig(importPath: string, configPath: string): Promise; //# sourceMappingURL=export-import-config.d.ts.map