import React from 'react'; import { TableProps } from 'antd/lib/table'; interface IProps extends TableProps { style?: React.CSSProperties; className?: string; } declare const TableMain: ({ style, className, ...rest }: IProps) => JSX.Element; export default TableMain;