import type { Components, JSX } from "../types/components";

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