import { AlertProps } from "@mui/material/Alert";
/**
 * Error alert props
 */
export type ErrorAlertProps = AlertProps & {
    /**
     * Message to display
     */
    message?: React.ReactNode;
};
/**
 * Error alert component
 * @param props Props
 * @returns Component
 */
export declare function ErrorAlert(props: ErrorAlertProps): import("react/jsx-runtime").JSX.Element;
