import type { Components, JSX } from "../types/components"; interface VehicleAccessories extends Components.VehicleAccessories, HTMLElement {} export const VehicleAccessories: { prototype: VehicleAccessories; new (): VehicleAccessories; }; /** * Used to define this component and all nested components recursively. */ export const defineCustomElement: () => void;