export type SubcommandResult = { code: number; lines: string[]; }; export interface ExportedConfig { schema: 1; generatedAt: string; harnessDir: string; host: string | undefined; mcpServers: unknown; claudeSettings: { allow?: string[]; deny?: string[]; mcp?: unknown; } | undefined; codexConfig: unknown | undefined; manifestMeta: { surface?: string; kernel_version?: string; } | undefined; hosts: string[]; } export declare function buildExportedConfig(harnessDir: string): Promise; export declare function exportConfigCmd(args: string[]): Promise; //# sourceMappingURL=export-config.d.ts.map