import * as React from 'react'; import { OverridableComponent, OverrideProps } from '../OverridableComponent'; export interface TableHeadTypeMap

{ props: P & { /** * The content of the component, normally `TableRow`. */ children?: React.ReactNode; /** * Override or extend the styles applied to the component. */ classes?: { /** Styles applied to the root element. */ root?: string; }; }; defaultComponent: D; } /** * * Demos: * * - [Tables](https://material-ui.com/components/tables/) * * API: * * - [TableHead API](https://material-ui.com/api/table-head/) */ declare const TableHead: OverridableComponent; export type TableHeadClassKey = keyof NonNullable; export type TableHeadProps< D extends React.ElementType = TableHeadTypeMap['defaultComponent'], P = {} > = OverrideProps, D>; export default TableHead;