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