import { default as React } from 'react'; import { ToastProps } from './Toast'; interface ToastContextType { addToast: (toast: ToastProps) => void; dismissToast: (id: string) => void; removeToast: (id: string) => void; removeAllToasts: () => void; removeOldestToast: () => void; toasts: ToastProps[]; } export declare const ToastProvider: React.FC<{ children: React.ReactNode; }>; export declare const useToast: () => ToastContextType; export {};