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