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