import * as React from "react"; declare const ToastProvider: ({ children }: { children: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element; declare const ToastViewport: React.ForwardRefExoticComponent & React.RefAttributes>; export interface ToastProps extends React.HTMLAttributes { variant?: "default" | "destructive" | "success" | "warning" | "info"; duration?: number; onClose?: () => void; } declare const Toast: React.ForwardRefExoticComponent>; declare const ToastClose: React.ForwardRefExoticComponent & React.RefAttributes>; declare const ToastTitle: React.ForwardRefExoticComponent & React.RefAttributes>; declare const ToastDescription: React.ForwardRefExoticComponent & React.RefAttributes>; export { ToastProvider, ToastViewport, Toast, ToastTitle, ToastDescription, ToastClose, };