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