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