import { AlertProps } from '@patternfly/react-core'; /** * ErrorMessage displays an inline danger alert for error states in messages. * Use this component when passing children to Message to display error information. */ export interface ErrorMessageProps extends Partial { /** Content to display in the error alert body */ children?: React.ReactNode; /** Additional classes for the error alert */ className?: string; /** Title of the error alert */ title?: React.ReactNode; /** Action links to display in the alert footer */ actionLinks?: React.ReactNode; } export declare const ErrorMessage: ({ title, actionLinks, children, className, ...props }: ErrorMessageProps) => import("react/jsx-runtime").JSX.Element; export default ErrorMessage;