import * as React from 'react'; import { RowClassName } from "rc-table/lib/interface"; export interface TableProps { className?: string; onClick?: any; onChange?: any; getPopupContainer?: any; style?: any; columns?: any; dataSource?: any; size?: any; scroll?: any; bordered?: boolean; rowSelection?: any; pagination?: any; position?: any; rowClassName?: string | RowClassName; } interface CompoundedComponent extends React.ForwardRefExoticComponent> { } declare const NeoTable: CompoundedComponent; export default NeoTable;