import { FC } from 'react'; import { Toast as ToastType } from '../../types'; import './Toast.css'; export interface IToast extends ToastType { onClose: (id: string) => void; } declare const Toast: FC; export default Toast;