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