import type { AlertProps } from '@mui/material'; import React from 'react'; export interface ErrorAlertProps extends AlertProps { additionalMessaging?: React.ReactNode; error?: T | Error | string; onCancel?: () => void; scope?: string; } export declare function ErrorAlert({ action, additionalMessaging, title, onCancel, error, scope, sx, ...props }: ErrorAlertProps): React.JSX.Element; //# sourceMappingURL=ErrorAlert.d.ts.map