import type { CSSProperties } from 'react'; import { type GridConditionalFormattingRule } from '../models'; import { type GridColDef } from '../models'; /** * Computes the style for a cell based on matching conditional formatting rules. * Rules are checked in order (priority by array position); last match wins for overlapping styles. * Independent of filters/sorts. * Applies to the rule's field (column). */ export declare const getConditionalCellStyle: (row: any, column: GridColDef, rowIndex: number, rules?: GridConditionalFormattingRule[]) => CSSProperties;