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