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