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