import type { CellMeta, Data, FilterDataItemCallback, MappingDataItemCallback, S2CellType } from '../../common/interface'; export declare const handleDataItem: (data: Data, callback?: FilterDataItemCallback | MappingDataItemCallback) => import("../../common/interface").DataItem | Record; /** * @description Determine if the current cell belongs to Cells * @param cells active cells * @param currentCell current activated cell */ export declare const includeCell: (cells: CellMeta[], currentCell: S2CellType) => boolean; export declare const getDataCellId: (rowIndex: string, colIndex: string) => string;