import * as React from 'react'; import { T as ToastProps, a as ToastActionElement } from '../toast-D090UYOq.js'; import 'class-variance-authority/types'; import '@radix-ui/react-toast'; import 'class-variance-authority'; type ToasterToast = ToastProps & { id: string; title?: React.ReactNode; description?: React.ReactNode; action?: ToastActionElement; }; type Toast = Omit; declare function toast({ ...props }: Toast): { id: string; dismiss: () => void; update: (props: ToasterToast) => void; }; declare function useToast(): { toast: typeof toast; dismiss: (toastId?: string) => void; toasts: ToasterToast[]; }; declare function useIsMobile(): boolean; export { toast, useIsMobile, useToast };