import type { FunctionComponent } from 'react'; import { EmptyStateProps } from '@patternfly/react-core'; /** extends EmptyStateProps */ export interface UnavailableContentProps extends Omit { /** The URL that the status page link points to */ statusPageUrl?: string; /** The text label for the link that points to the status page */ statusPageLinkText?: React.ReactNode; /** The title for the unavailable content message */ titleText?: React.ReactNode; /** The body text for the unavailable content message */ bodyText?: React.ReactNode; /** Custom OUIA ID */ ouiaId?: string | number; } declare const UnavailableContent: FunctionComponent; export default UnavailableContent;