import { AlertProps } from "../../atoms/Alert/index.js"; export type ErrorAlertProps = { onRetry?: () => void; errorMessage?: AlertProps; className?: string; }; export declare function ErrorAlert({ onRetry, errorMessage, className }: ErrorAlertProps): import("react/jsx-runtime").JSX.Element;