import * as React from 'react'; import { WithStyles } from '../../core/withStyles'; import { PresentationThumbnailProps } from '../../presentation/PresentationThumbnail/PresentationThumbnail'; import * as P from '../../presentation/PresentationTypes'; export interface ItemProps extends WithStyles, PresentationThumbnailProps { presentation: P.Presentation; onRemove: () => void; testId?: string; } declare const _default: React.ComponentType & import("@material-ui/core/styles/withStyles").StyledComponentProps>; export default _default;