import { BadgeProps } from 'antd';
import React from 'react';
export interface StatusProps extends Pick<BadgeProps, 'className' | 'color' | 'status' | 'style' | 'text'> {
    tooltip?: React.ReactNode;
    title?: string;
}
export declare const Status: React.FC<StatusProps>;
