import React, { FC } from "react";
import { ToastType } from "./context";
import { Props } from "../toast-container";
declare type PropsWithChildren = Props & {
    children: React.ReactNode;
};
export declare let GlobalToast: ToastType;
declare const ToastProvider: FC<PropsWithChildren>;
export default ToastProvider;
