import { InternalStandardProps as StandardProps } from '..'; export interface ListItemIconProps extends StandardProps> { /** * The content of the component, normally `Icon`, `SvgIcon`, * or a `@material-ui/icons` SVG icon element. */ children?: React.ReactNode; /** * Override or extend the styles applied to the component. */ classes?: { /** Styles applied to the root element. */ root?: string; /** Styles applied to the root element when the parent `ListItem` uses `alignItems="flex-start"`. */ alignItemsFlexStart?: string; }; } export type ListItemIconClassKey = keyof NonNullable; /** * A simple wrapper to apply `List` styles to an `Icon` or `SvgIcon`. * Demos: * * - [Lists](https://material-ui.com/components/lists/) * * API: * * - [ListItemIcon API](https://material-ui.com/api/list-item-icon/) */ export default function ListItemIcon(props: ListItemIconProps): JSX.Element;