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