import React from 'react'; import type { DefaultProps } from '../../types'; import type { TableProps } from '@mui/material/Table'; export interface ITableProps extends DefaultProps, Omit { spacing?: 'normal' | 'checkbox' | 'none'; } declare const Table: ({ style, margin, padding, spacing, children, ...otherProps }: ITableProps) => React.JSX.Element; export default Table;