import { ConstructorData } from '../types'; /** * Represents an image with optional blurhash for placeholder display * @example * ```typescript * const image = new Image({ * value: 'https://example.com/product.jpg', * blurhash: 'LEHV6nWB2yk8pyo0adR*.7kCMdnj' * }) * ``` */ export declare class Image { /** BlurHash string for image placeholder */ blurhash: string | null; /** Unique identifier for the image */ id: string; /** Image URL or path */ value: string | null; constructor(data?: ConstructorData); } //# sourceMappingURL=Image.d.ts.map