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