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