import { ReactNode, FC, ReactNodeArray } from "react"; import TableCol from "./Col"; import TableRow from "./Row"; import "./index.scss"; interface IHeader { header: Array; className?: string; children: ReactNode | ReactNodeArray; dataSource?: Object | any; responsive?: boolean; fixed?: boolean; height?: string; sort?: boolean; initialData?(param?: any): void; } export interface IThead { name: ReactNode | ReactNodeArray | string; key?: string; flex?: number; } declare const Table: FC; export { Table, TableRow, TableCol };