import type { SpreadsheetConditionalThresholdDraft } from './spreadsheet-conditional-format-model'; interface SpreadsheetConditionalThresholdFieldsProps { label: string; thresholds: SpreadsheetConditionalThresholdDraft[]; startIndex?: number; showEquality?: boolean; onChange: (index: number, patch: Partial) => void; } export declare function SpreadsheetConditionalThresholdFields({ label, thresholds, startIndex, showEquality, onChange, }: SpreadsheetConditionalThresholdFieldsProps): import("react").JSX.Element; export {};