import * as React from 'react'; import { WithStyles } from '../../core/withStyles'; import { Theme } from '../../theme'; export interface OccurrenceListItemProps extends WithStyles { name: string; badge?: React.ReactNode; start: Date; end: Date; overridden?: boolean; locked?: boolean; recurring?: boolean; onClick?: React.ReactEventHandler; testId?: string; } export declare const OccurrenceListItem: React.FunctionComponent; declare const styles: (theme: Theme) => Record<"content" | "repeat" | "root" | "lock" | "duration" | "clickable" | "overridden" | "badges" | "badge", import("@material-ui/core/styles/withStyles").CSSProperties>; declare const _default: React.ComponentType & import("@material-ui/core/styles/withStyles").StyledComponentProps>; export default _default;