import { GetProductDetailsJSON, ProductCategory } from "../types/Product"; export declare class ProductUpdateBuilder { private product; private readonly previousProduct; constructor(data: GetProductDetailsJSON); setDescription(description: string): this; setCategory(category: ProductCategory): this; setImageUrl(image_url: string): this; setHomeUrl(home_url: string): this; update(): Promise; toJSON(): Readonly; }