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