import { CellTransferCellInfo, Rectangle, TransferColumnConfig } from '../types'; import { ObjectForExtending } from '../../types'; export declare function collectTextMatrix(range: Rectangle, columns: readonly TransferColumnConfig[], rows: readonly R[], options?: { withCells?: boolean; resolveOrigin?: boolean; }): { grid: string[][]; cells: CellTransferCellInfo[][]; };