import { Product3dConfigurator } from '../components/product-3d-configurator'; import { Product3dViewer } from '../components/product-3d-viewer'; import { ProductConfigurator } from '../components/product-configurator'; import { ProductDetail } from '../components/product-detail'; import { ProductDetailPage } from '../components/product-detail-page'; import { ProductListPage } from '../components/product-list-page'; import { ProductSidebar } from '../components/product-sidebar'; import { SiteShell } from '../components/site-shell'; export type SDKElementTagNameMap = HTMLElementTagNameMap; declare global { interface HTMLElementTagNameMap { "product-3d-viewer": Product3dViewer; "product-3d-configurator": Product3dConfigurator; "product-configurator": ProductConfigurator; "product-detail": ProductDetail; "product-detail-page": ProductDetailPage; "product-list-page": ProductListPage; "product-sidebar": ProductSidebar; "site-shell": SiteShell; } }