import { TableProps } from '@mui/material/Table';
import { TableBodyProps } from '@mui/material/TableBody';
import { TableCellProps } from '@mui/material/TableCell';
import { TableContainerProps } from '@mui/material/TableContainer';
import { TableHeadProps } from '@mui/material/TableHead';
import { TableRowProps } from '@mui/material/TableRow';
declare const Table: {
    (props: TableProps): import("react/jsx-runtime").JSX.Element;
    TableCell: (props: CellProps) => import("react/jsx-runtime").JSX.Element;
    TableHead: (props: TableHeadProps) => import("react/jsx-runtime").JSX.Element;
    TableBody: (props: TableBodyProps) => import("react/jsx-runtime").JSX.Element;
    TableRow: (props: TableRowProps) => import("react/jsx-runtime").JSX.Element;
    TableContainer: (props: TableContainerProps) => import("react/jsx-runtime").JSX.Element;
};
export interface CellProps extends TableCellProps {
    disabled?: boolean;
    shrink?: boolean;
    alignEnd?: boolean;
    colSize?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
}
export default Table;
