/** * 数据源列表 */ import React from 'react'; export interface DataSourceTableProps { dataSource: any[]; onRow?: (record: any, index: any) => void; rowSelection?: any; columns?: any[]; defaultExpandAllRows?: boolean; expandedRowKeys?: any[]; onExpand?: (expanded: any, record: any) => void; } declare const _default: React.NamedExoticComponent; export default _default;