type StatusProps = {
    value: string | number;
    map: {
        label: string;
        value: number | string;
        color: string;
        [key: string]: any;
    }[];
};
declare const Status: FC<StatusProps>;
export default Status;
