import type { FunctionComponent } from 'react'; import { EmptyStateProps } from '@patternfly/react-core'; /** extends EmptyStateProps */ export interface MissingPageProps extends Omit { /** The URL that the home page link points to */ toHomePageUrl?: string; /** The text label for the link that points back to the home page */ toHomePageText?: React.ReactNode; /** The title for the invalid object message */ titleText?: React.ReactNode; /** The body text for the invalid object message */ bodyText?: React.ReactNode; /** Custom OUIA ID */ ouiaId?: string | number; } export declare const MissingPage: FunctionComponent; export default MissingPage;