import { EmptyStateProps } from '@patternfly/react-core'; import type { FunctionComponent } from 'react'; export interface HistoryEmptyStateProps extends EmptyStateProps { onClick?: () => void; bodyText?: string | React.ReactNode; buttonText?: string; buttonIcon?: React.ReactNode; hasButton?: boolean; } export declare const HistoryEmptyState: FunctionComponent; export default HistoryEmptyState;