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