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