import { Icon } from "./Icon"; import { TableAction } from "./TableAction"; export declare class CellValue { displayValue: string | string[]; sortingValue: any; color: string | null; action: TableAction | null; icon: Icon | null; ableToCopy: boolean; style: 'chip' | null; constructor(displayValue: string | string[], sortingValue: any, color?: string | null, action?: TableAction, icon?: Icon, ableToCopy?: boolean); setStyle(style: 'chip' | null): void; }