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