import { Alignment, Status } from '../index';
export interface CellModel<TValue = any> {
    cssClass?: string;
    editable?: boolean;
    errorStatus?: Status;
    horizontalAlignment?: Alignment;
    htmlEnabled?: boolean;
    iconId?: string;
    mandatory?: boolean;
    text?: string;
    flowsLeft?: boolean;
    empty?: boolean;
    value?: TValue;
    tooltipText?: string;
    foregroundColor?: string;
    backgroundColor?: string;
    font?: string;
    sortCode?: number;
}
//# sourceMappingURL=CellModel.d.ts.map