import { StandardProps } from '..'; export interface ListItemIconProps extends StandardProps, ListItemIconClassKey> { /** * The content of the component, normally `Icon`, `SvgIcon`, * or a `@material-ui/icons` SVG icon element. */ children?: React.ReactNode; } export type ListItemIconClassKey = 'root' | 'alignItemsFlexStart'; /** * A simple wrapper to apply `List` styles to an `Icon` or `SvgIcon`. * Demos: * * - [Lists](https://mui.com/components/lists/) * * API: * * - [ListItemIcon API](https://mui.com/api/list-item-icon/) */ export default function ListItemIcon(props: ListItemIconProps): JSX.Element;