import { BoxProps } from '@mui/material';
import { PropsWithChildren } from 'react';

export type TableComponentProps = {
    disableTableHeader?: boolean;
    sx?: BoxProps<'table'>['sx'];
};
export declare const TableComponent: (props: PropsWithChildren<TableComponentProps>) => import("react/jsx-runtime").JSX.Element;
