import type { TableColumnRender } from '../..'; export type ColumnStatusType = 'success' | 'error' | 'warning' | 'info' | 'default'; export interface ColumnStatusTypeValue { label?: string; value?: any; } export interface ColumnStatusProps { key?: string; maps?: Record; } export declare function columnStatus({ key, maps }: ColumnStatusProps): TableColumnRender;