export interface ProductData { name: string; description?: string; brand?: string; price?: { amount: number; currency: string; }; sku?: string; rating?: { value: number; count: number; }; image?: string; } export declare function extractProductSchema(html: string, _url: string): Promise; //# sourceMappingURL=Product.d.ts.map