import {ReactNode} from 'react'; import {ToastVariantsType} from '../../components/common/molecules/toast/toast.type'; export interface IUseToast { id?: string; children?: ReactNode; } export interface INotify { variant?: ToastVariantsType; title?: string; description?: string; id?: string; children?: ReactNode; }