import { ViewerOptions } from '../methods/types'; export interface Product { glb: string; usdz: string; isActive: boolean; name: string; modelId?: string; pdpUrl?: string; placement: 'floor' | 'wall'; resize: boolean; sound: string; manufacturerId: string | null; hdri: string | null; exposure: number | null; bloom: boolean | null; viewerOptions?: ViewerOptions | null; } export default function (sku: string): Promise;