import { default as React } from 'react'; export interface OnChainExcelViewerProps { /** 文件URL */ url: string; /**sheet单元格move */ onSheetMousemove?: (cell: any, postion: any, sheetFile: any, moveState: any, ctx: any) => void; /**sheet单元格up */ onSheetMouseup?: (cell: any, postion: any, sheetFile: any, moveState: any, ctx: any) => void; /**sheet单元格Drag */ onCellDragStop?: (cell: any, postion: any, sheetFile: any, moveState: any, ctx: any) => void; } /** Excel预览 */ declare const OnChainExcelCore: React.FC; export default OnChainExcelCore;