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