export interface RecipeData { name: string; description?: string; ingredients: string[]; instructions: string[]; totalTime?: string; prepTime?: string; cookTime?: string; recipeYield?: string; author?: string; date?: string; } export declare function extractRecipeSchema(html: string, url: string): Promise; //# sourceMappingURL=Recipe.d.ts.map