import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; export declare type TableInterfacePropsType = "default" | "list"; export interface TableInterfaceProps extends PropsInterface { type?: TableInterfacePropsType; } export declare class Table extends PureComponent { constructor(props: any); render(): JSX.Element; }