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