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