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

{ props: P & { cellHeight?: number | 'auto'; cols?: number; spacing?: number; }; defaultComponent: D; classKey: GridListClassKey; } /** * ⚠️ The GridList component was renamed to ImageList to align with the current Material Design naming. * * You should use `import { ImageList } from '@material-ui/core'` * or `import ImageList from '@material-ui/core/ImageList'`. * API: * * - [GridList API](https://material-ui.com/api/grid-list/) */ declare const GridList: OverridableComponent; export type GridListClassKey = 'root'; export type GridListProps< D extends React.ElementType = GridListTypeMap['defaultComponent'], P = {} > = OverrideProps, D>; export default GridList;