export interface LoadingToastProps { visible?: boolean; cancelable?: boolean; message?: string; timeout?: number; minDuration?: number; maxDuration?: number; onModalShow?: () => void; onModalHide?: () => void; onDismiss?: () => void; accessible?: boolean; hasShade?: boolean; }