export interface ParsedRecipeContent { description: string; agent: string; includeInHistory: boolean; instructions: string; unknownFrontmatter: string[]; error?: string; } /** Parses a recipe Markdown file into fields suitable for the recipe editor. */ export declare function parseRecipeContent(content: string, fallbacks?: { description?: string; agent?: string; includeInHistory?: boolean; }): ParsedRecipeContent; /** Serializes structured recipe fields while preserving unknown metadata lines. */ export declare function serializeRecipeContent(fields: { description: string; agent: string; includeInHistory: boolean; instructions: string; unknownFrontmatter?: string[]; }): string; //# sourceMappingURL=recipe-content.d.ts.map