import { ReactNode } from "react"; import { ToastContainerProps } from "react-toastify"; export declare type NotificationsProviderProps = { children?: ReactNode; } & ToastContainerProps; export declare const notify: { info: (content: import("react-toastify").ToastContent, options?: import("react-toastify").ToastOptions<{}> | undefined) => import("react-toastify").Id; warn: (content: import("react-toastify").ToastContent, options?: import("react-toastify").ToastOptions<{}> | undefined) => import("react-toastify").Id; success: (content: import("react-toastify").ToastContent, options?: import("react-toastify").ToastOptions<{}> | undefined) => import("react-toastify").Id; error: (content: import("react-toastify").ToastContent, options?: import("react-toastify").ToastOptions<{}> | undefined) => import("react-toastify").Id; dismiss: (id?: import("react-toastify").Id | undefined) => void; isActive: (id: import("react-toastify").Id) => boolean; update: (toastId: import("react-toastify").Id, options?: import("react-toastify").UpdateOptions | undefined) => void; clearWaitingQueue: (params?: import("react-toastify").ClearWaitingQueueParams | undefined) => void; done: (id: import("react-toastify").Id) => void; }; export declare const NotificationsProvider: ({ children, ...props }: NotificationsProviderProps) => import("@emotion/react/jsx-runtime").JSX.Element;