import React from "react"; export declare const sanitizeErrorMessage: (error: any) => string; export interface ErrorToastProps { message: string; onClose: () => void; duration?: number; style?: React.CSSProperties; } declare const ErrorToast: React.FC; export default ErrorToast;