import { XlsxFormatting } from './XlsxFormatting'; type Axis = 'row' | 'col'; type RefType = any; export declare class XlsxCore extends XlsxFormatting { protected core: XlsxCore; protected getCell(ref: RefType, opts?: any): any; protected getByIndex(axis: Axis, index: number, searchRange: string): any[]; protected getByValue(axis: Axis, val: any, searchRange: string, exactMatch: boolean): any[]; protected clearByIndex(axis: Axis, index: number, searchRange: string): number; protected clearByValue(axis: Axis, val: any, searchRange: string, exactMatch: boolean): number; protected getCellByValue(val: any, searchRange: string, exactMatch: boolean): any; protected getCellMergeInfo(row: number, col: number): { isMerged: boolean; rowSpan: number; colSpan: number; isTopLeft: boolean; }; } export {}; //# sourceMappingURL=XlsxCore.d.ts.map