import * as React from 'react'; import { StandardProps } from '..'; export interface TableProps extends StandardProps { component?: React.ElementType; padding?: Padding; size?: Size; } export type TableBaseProps = React.TableHTMLAttributes; export type Padding = 'default' | 'checkbox' | 'none'; export type Size = 'small' | 'medium'; export type TableClassKey = 'root'; declare const Table: React.ComponentType; export default Table;