import * as React from 'react'; export { default as toast } from 'react-hot-toast'; export { useToastContext } from './ToastContext'; export declare const ToastProvider: { ({ children, className }: React.PropsWithChildren<{ className?: string; }>): React.JSX.Element; displayName: string; };