import React from "react"; import { TableContainerProps as MUITableContainerProps, TableProps as MUITableProps } from "@mui/material"; export interface TableProps extends React.PropsWithChildren { pagination?: boolean; defaultPage?: number; defaultRowsPerPage?: number; rowsPerPageOptions?: number[]; count: number; tableProps?: MUITableProps; tableContainerProps?: MUITableContainerProps; } export declare const Table: React.FC; export default Table;