import { default as React } from 'react'; import { Id, ToastOptions } from 'react-toastify'; export declare const ToastContainer: () => React.JSX.Element; export declare function toast(content: string, { type }?: Options): Id; interface Options { type: Exclude["type"]>, "info" | "warning">; } export {};