///
import * as ExcelJS from 'exceljs';
import { ExcelOptionConvert } from './types';
export declare class ExcelProvider {
/**
*
* @param headers
* @param data
* @returns
*/
generate(headers: Array>, data: any[]): Promise;
/**
*
* @deprecated
* @param filePath
* @returns
*/
sheetToJson(filePath: string | Buffer): T[];
/**
*
* @param path
* @param options
* @returns
*/
convertToJson(filePath: string | Buffer, options?: ExcelOptionConvert): T[];
/**
*
* @param columnNumber
* @returns
*/
getCellTitle(columnNumber: number): string;
/**
*
* @param columnTitle
* @returns
*/
getCellNumber(columnTitle: string): number;
/**
*
* @param value
* @returns
*/
private _toCellColumn;
/**
*
* @param value
* @returns
*/
private _fromCellColumn;
/**
*
* @param cell
* @returns
*/
mappingCell(cell?: string | number): string[];
}
//# sourceMappingURL=index.d.ts.map