import * as React from 'react'; import type { ProColumns } from '@ant-design/pro-components'; import type { TablePaginationConfig } from 'antd/es/table'; interface ProTableProps { rowKey?: string; tableName?: string; columns?: ProColumns[]; dataSource?: []; headerTitle?: string; exportButton?: boolean; importButton?: boolean; importTemplateList?: string; tableHeaderBold?: boolean; tableHeaderSize?: string; screen_inner_id?: string; toolBarRender?: boolean; scroll?: { x?: number | string; y?: number | string; }; pagination?: false | TablePaginationConfig; } declare const ProTable: React.FC; export type { ProTableProps }; export default ProTable;