import * as React from 'react'; import { Theme } from '../../theme'; import { WithStyles } from '../withStyles'; declare const styles: (theme: Theme) => Record<"row" | "root" | "cursorPointer", import("@material-ui/core/styles/withStyles").CSSProperties>; export interface ItemProps extends WithStyles { onClick?: () => void; } declare const _default: React.ComponentType & import("@material-ui/core/styles/withStyles").StyledComponentProps>; export default _default;