import { Context } from '../context'; import { Range } from '../types'; /** True if any cell in the current selection has content that merge would consider. */ export declare function mergeSelectionHasValues(ctx: Context): boolean; export declare function mergeCells(ctx: Context, sheetId: string, ranges: Range, type: string): void;