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