import React from 'react'; import { Options, Result } from 'ahooks/es/useRequest/src/types'; import { TableProps } from 'antd'; type TableVoidProps = TableProps & { request?: any; useSelectedRowKeys?: any; useDataSource?: (options?: Options & { uid?: string; }, props?: any) => Result & { state?: any; setState?: any; }; }; export declare const CollectionFieldsTable: React.FC; export {};