import { PopoverProps } from '@patternfly/react-core'; import React from 'react'; export declare enum StatusType { 'healthy' = "healthy", 'danger' = "danger", 'warning' = "warning", 'progress' = "progress", 'detached' = "detached", 'pending' = "pending", 'unknown' = "unknown", 'sleep' = "sleep", 'empty' = "empty", 'draft' = "draft" } export declare function AcmInlineStatus(props: { type: StatusType; status: string | React.ReactNode; popover?: PopoverProps; }): JSX.Element;