import { TableProps } from 'antd';
import React from 'react';
declare const TableView: <RecordType extends object = any>(props: TableProps<RecordType> & {
doSearch: (...arg: any[]) => void;
locale?: 'zh-CN' | 'en-US';
}) => React.ReactElement;
export default TableView;