import type { TYPES } from '@visactor/vtable'; export type RowData = number | string; export type RowObject = Record; export declare function translateRowObjToArray(dataSource: RowObject[], columns: TYPES.CellInfo[]): RowData[][]; export declare function translateRowArrayToObj(dataSource: RowData[][], columns: TYPES.CellInfo[]): RowObject[];