import type { Sheet } from '@fortune-sheet/core'; import { type SpreadsheetConditionalDataBar } from './work-spreadsheet-conditional-data-bar'; import { type SpreadsheetConditionalIcon } from './work-spreadsheet-conditional-icons'; /** Full formula-rule scans stay bounded; larger ranges use materialized cells. */ export declare const MAX_SPREADSHEET_CONDITIONAL_FORMULA_SCAN_CELLS = 10000; export interface SpreadsheetConditionalCellStyle { textColor?: string; cellColor?: string; dataBar?: SpreadsheetConditionalDataBar; icon?: SpreadsheetConditionalIcon; } export declare function spreadsheetConditionalFormatStyles(sheet: Sheet, formulaSheets?: readonly Sheet[]): Map;