import React from 'react'; import './index.less'; export interface configItem { text: string; render?: (node: React.ReactNode) => React.ReactNode; } export interface IProps { toolBarShow?: boolean | undefined; toolBarRender?: React.ReactNode[]; configs?: configItem[]; tableConfig?: any; draggable?: boolean | (() => boolean); onSearch?: (value: string) => void; onSortEnd?: (oldIndex: number, newIndex: number) => void; plainOptions?: any; checkedOptions?: string[]; onCheckColumns?: (e: any) => void; handleNewDrop?: (data: any) => void; onClickToolbar?: (key: string) => void; } declare const SeniortTable: React.FC; export default SeniortTable;