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