import * as React from 'react'; import { SxProps } from '@mui/system'; import { Theme } from '..'; import { OverridableComponent, OverrideProps } from '../OverridableComponent'; import { ImageListItemClasses } from './imageListItemClasses'; export interface ImageListItemOwnProps { /** * The content of the component, normally an ``. */ children?: React.ReactNode; /** * Override or extend the styles applied to the component. */ classes?: Partial; /** * Width of the item in number of grid columns. * @default 1 */ cols?: number; /** * Height of the item in number of grid rows. * @default 1 */ rows?: number; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps; } export interface ImageListItemTypeMap< AdditionalProps = {}, RootComponent extends React.ElementType = 'li', > { props: AdditionalProps & ImageListItemOwnProps; defaultComponent: RootComponent; } /** * * Demos: * * - [Image List](https://mui.com/material-ui/react-image-list/) * * API: * * - [ImageListItem API](https://mui.com/material-ui/api/image-list-item/) */ declare const ImageListItem: OverridableComponent; export type ImageListItemProps< RootComponent extends React.ElementType = ImageListItemTypeMap['defaultComponent'], AdditionalProps = {}, > = OverrideProps, RootComponent> & { component?: React.ElementType; }; export default ImageListItem;