import * as class_variance_authority_types from 'class-variance-authority/types'; import * as React from 'react'; import * as ToastPrimitives from '@radix-ui/react-toast'; import { VariantProps } from 'class-variance-authority'; import { D as DirectionType } from '../commonTypes-BtF87PmG.mjs'; declare const ToastProvider: React.FC; declare const ToastViewport: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const Toast: React.ForwardRefExoticComponent, "ref"> & VariantProps<(props?: ({ variant?: "default" | "destructive" | null | undefined; severity?: "info" | "warning" | "error" | "success" | "none" | null | undefined; } & class_variance_authority_types.ClassProp) | undefined) => string> & { direction?: DirectionType; } & React.RefAttributes>; declare const ToastAction: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const ToastClose: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const ToastTitle: React.ForwardRefExoticComponent, "ref"> & { size: "default" | "sm"; } & React.RefAttributes>; declare const ToastDescription: React.ForwardRefExoticComponent, "ref"> & { size: "default" | "sm"; } & React.RefAttributes>; type ToastProps = React.ComponentPropsWithoutRef; type ToastActionElement = React.ReactElement; type ToasterToastProps = ToastProps & { id: string; title?: React.ReactNode; description?: React.ReactNode; severity?: "info" | "warning" | "error" | "success" | "none"; action?: ToastActionElement; size?: "default" | "sm"; }; export { Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, type ToasterToastProps };