/// import { Pagination } from "./Paginate"; export interface Props { className?: string; children?: any; seamless?: boolean; height?: number | string; pagination?: Pagination; } declare const Table: ({ children, className, seamless, height, pagination }: Props) => JSX.Element; export default Table;