import { BoxProps } from "../Box"; import { STATUS_VARIANT } from "../../types"; export interface StatusPanelProps extends BoxProps { variant?: STATUS_VARIANT; hoverable?: boolean; } declare const StatusPanel: { (props: StatusPanelProps): JSX.Element; defaultProps: Partial; }; export { StatusPanel };