import React from 'react';
import { ToastContextType } from '../types';
export declare const ToastProvider: ({ children }: {
    children: React.ReactNode;
}) => React.JSX.Element;
export declare const useToast: () => ToastContextType;
