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