import { EmptyStateProps } from '@patternfly/react-core'; import type { FunctionComponent } from 'react'; /** extends EmptyStateProps */ export interface ErrorStateProps extends Omit { /** Title of the error. */ titleText?: React.ReactNode; /** A description of the error, if no body text is provided then it will be set to the defaultBodyText. */ bodyText?: React.ReactNode; /** A default description of the error used if no errorDescription is provided. */ defaultBodyText?: React.ReactNode; /** Custom footer content */ customFooter?: React.ReactNode; /** ErrorState OUIA ID */ ouiaId?: string | number; /** Status of the error message. */ status?: 'danger' | 'warning' | 'success' | 'info' | 'custom' | 'none'; } declare const ErrorState: FunctionComponent; export default ErrorState;