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