import * as React from 'react'; import { AsyncDataSource } from '@/types'; import { ProTableProps } from '../pro-table/types'; export interface ExpandTableDataProps { childTableProps: AsyncDataSource; } export interface ExpandTableProps extends ProTableProps { /** * 表格数据源 */ dataSource?: ExpandTableDataProps[]; } /** * 子母表 */ export declare class ExpandTable extends React.Component { static displayName: string; static defaultProps: { showActionBar: boolean; settingButtons: boolean; }; render(): React.JSX.Element; }