import type { ExportConfig, ParsedIntent, ClarificationItem } from '../types.js'; export type { ClarificationItem } from '../types.js'; export interface GenerateResult { success: boolean; exportConfig?: ExportConfig; clarificationRequired?: ClarificationItem[]; } /** * Converts a ParsedIntent (from the calling LLM agent) into a validated ExportConfig. * Research D11: The server does not embed an LLM — it receives a structured ParsedIntent. */ export declare function generateExportConfig(intent: ParsedIntent): GenerateResult; //# sourceMappingURL=config-generator.d.ts.map