import { TableProps } from 'antd/lib/table'; import { DomainService, Entity } from 'matrix-ui-service'; export interface EntityTableProps extends TableProps { domainService?: DomainService; listName: string; } /** * 监控store变化 * 目前属于临时改造EntityList,未来全面转为React hook + ant design pro * @param props * @constructor */ export declare function EntityTable(props: EntityTableProps): JSX.Element;