import { RevSchemaField } from '../../common'; import { RevBehavioredColumnSettings } from '../settings'; // eslint-disable-next-line import-x/no-cycle import { RevViewCell } from './view-cell'; /** @public */ export interface RevCellPossiblyPaintable { paint?(cell: RevViewCell, prefillColor: string | undefined): number | undefined; }