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