import type { ReactNode } from "react"; import { type NotificationVariant } from "../html/index.js"; export * from "./variants.js"; type ToastNotificationProps = { variant: NotificationVariant; title: string; description?: string; onDismiss?: () => void; }; export declare function ToastNotification({ variant, title, description, onDismiss, }: ToastNotificationProps): import("react").JSX.Element; type ToastContainerProps = { children: ReactNode; }; export declare function ToastContainer({ children }: ToastContainerProps): import("react").JSX.Element; //# sourceMappingURL=index.d.ts.map