import { TableProps } from 'antd'; import { ColumnsType } from 'antd/lib/table/interface'; export interface ITableProps extends TableProps { showTotal?: boolean; compact?: boolean; columns: ColumnsType; /** * @description 斑马纹 * @default */ striped?: boolean; /** * @description 点击刷新的回调函数 * @default */ onRefresh?: () => void; /** * @description 点击重置的回调函数 * @default */ onReset?: () => void; } export declare const Table: (props: ITableProps) => JSX.Element;