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