import React from 'react'; import { ToastOptions } from './'; export interface ICustomToastProps extends ToastOptions { toastId: string; } declare const CustomToast: React.FC; export default CustomToast;