import React from 'react'; import { type IconType } from '../../components/Icon'; export type StatusProps = { label: string; status?: 'info' | 'success' | 'warning' | 'error' | 'neutral' | 'highlight'; showIcon?: boolean; className?: string; icon?: IconType; }; export declare const Status: ({ label, status, showIcon, className, icon, }: StatusProps) => React.JSX.Element;