import * as React from 'react'; import { StandardProps } from '..'; export interface TableProps extends StandardProps { component?: React.ReactType; } export type TableBaseProps = React.TableHTMLAttributes; export type TableClassKey = 'root'; declare const Table: React.ComponentType; export default Table;