import { FC, PropsWithChildren } from 'react';
export type TableStatusType = 'success' | 'warning' | 'error';
export declare const TableStatus: FC<PropsWithChildren & {
    value: TableStatusType;
    className?: string;
}>;
