import { toastPositionType } from '../types'; import { Colors } from '../../../shared/enums'; export interface IToastConfig { message: string; type: Colors; dismissible?: boolean; animation?: object; closeOnClick?: boolean; pauseOnHover?: boolean; position?: toastPositionType; duration?: number; }