import { Context } from '../../../core'; /** * Find all cells that have matching validation rules * Compares all relevant validation properties except rangeTxt and checked */ export declare function findMatchingCells(ctx: Context, currentRow: number, currentCol: number): { row: number; col: number; }[]; /** * Convert a list of cell coordinates to a range string (e.g., "A1:A5" or "A1,A3,A5") * Tries to merge contiguous cells into ranges where possible */ export declare function cellsToRangeString(ctx: Context, cells: { row: number; col: number; }[]): string;