/// import { IMyTableBaseProps as IMyTableProps } from './AntTable'; interface ISummaryRow { [propName: string]: any; } export interface IMyTableBaseProps extends IMyTableProps { summaryRow?: ISummaryRow; } declare const _default: (props: IMyTableBaseProps) => JSX.Element; export default _default;