import { StandardProps } from '..'; export interface ListItemIconProps extends StandardProps<{}, ListItemIconClassKey> { children: React.ReactElement; } export type ListItemIconClassKey = 'root'; declare const ListItemIcon: React.ComponentType; export default ListItemIcon;