import { MouseEvent } from 'react'; export type ToastPosition = 'bottom-center' | 'bottom-right' | 'bottom-left'; export interface ErrorToastProps { message?: string; onRetry?: (e: MouseEvent) => void; position?: ToastPosition; iconSrc?: string; } export interface ToastContainerProps { toastPosition: ToastPosition; }