import React from 'react'; import { ToastOptions as ToastifyToastOptions, ToastPosition } from 'react-toastify'; export interface ToastOptions extends Omit, 'type'> { type?: 'default' | 'error' | 'success' | 'warning' | 'primary'; title?: string | React.ReactNode; toastPosition?: ToastPosition; description?: React.ReactNode; message?: React.ReactNode; isIcon?: boolean; isCloseBtn?: boolean; buttonList?: any; } declare const Toast: (props: ToastOptions) => import("react-toastify").Id; export default Toast;