import type * as XLSX from 'xlsx';
/**
 * 获取 xlsx 库
 * xlsx 是一个用于处理 Excel 文件的第三方库
 * @returns xlsx 库
 * @example
 * ```ts
 * const XLSX = getXlsx();
 * const workbook = XLSX.readFile('data.xlsx');
 * ```
 */
export declare function getXlsx(): typeof XLSX;
