import { PureComponent } from "react"; import { TableProps } from "rc-table/lib/Table"; import { ConfigConsumerProps } from "../Config"; import Column from "./Column"; interface IProps extends TableProps { prefixCls?: string; hasLine?: boolean; className?: string; } export default class Table extends PureComponent { static Column: typeof Column; static defaultProps: { hasLine: boolean; className: string; }; renderTable: ({ getPrefixCls }: ConfigConsumerProps) => JSX.Element; render(): JSX.Element; } export {};