import { BaseTableCol, TableRowData, TableRowspanAndColspanFunc } from '../type'; export interface SkipSpansValue { colspan?: number; rowspan?: number; skipped?: boolean; } export declare function getCellKey(row: TableRowData, rowKey: string, colKey: string, colIndex: number): string; export default function useRowspanAndColspan(data: TableRowData[], columns: BaseTableCol[], rowKey: string, rowspanAndColspan: TableRowspanAndColspanFunc): { skipSpansMap: Map; getSkipSpansMap: (data: TableRowData[], columns: BaseTableCol[], rowspanAndColspan: TableRowspanAndColspanFunc) => Map; };