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