import { ThemeReactorStyleSheet } from '../common'; import * as React from 'react'; export const styleSheet: ThemeReactorStyleSheet; export interface ListItemAvatarProps { /** * The content of the component, normally `Avatar`. */ /** * Useful to extend the style applied to components. */ classes?: any, /** * @ignore */ className?: string, } export default function ListItemAvatar(props: ListItemAvatarProps, context: any): JSX.Element;