import { VariantProps } from 'class-variance-authority'; import * as ToastPrimitives from "@radix-ui/react-toast"; import * as React from "react"; declare const ToastProvider: React.FC; declare const ToastViewport: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const Toast: React.ForwardRefExoticComponent, "ref"> & VariantProps<(props?: ({ variant?: "default" | "destructive" | "success" | "info" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string> & React.RefAttributes>; declare const ToastAction: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const ToastClose: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const ToastTitle: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const ToastDescription: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; type ToastProps = React.ComponentPropsWithoutRef; type ToastActionElement = React.ReactElement; export { Toast, ToastAction, ToastClose, ToastDescription, ToastProvider, ToastTitle, ToastViewport, type ToastActionElement, type ToastProps, };