import React from 'react'; import { Table } from 'antd'; import { ChainableTablePlugins } from '../utils'; import { ProTableProps, ProTableBuiltInPlugins } from '../types'; import proTableAddon from './addon'; declare const ForwardTable: (props: ProTableProps & { children?: React.ReactNode; } & { ref?: React.Ref | undefined; }) => React.ReactElement; export declare type ProTableType = Omit & typeof ForwardTable & React.FC & typeof proTableAddon; export declare function createProTable = ProTableProps>(plugins?: ChainableTablePlugins, targetDefaultProps?: ProTableProps): ProTableType; export default createProTable;