/// import * as React from 'react'; import { IExpandingCardProps } from 'office-ui-fabric-react'; export interface IFieldUserHoverCardProps { /** * IExpandingCardProps */ expandingCardProps: IExpandingCardProps; /** * User display name */ displayName: string; /** * CSS styles to apply to the renderer */ cssProps?: React.CSSProperties; } export interface IFieldUserHoverCardState { contentRendered?: HTMLDivElement; } /** * Component to render User name with related Hover Card */ export default class FieldUserHoverCard extends React.Component { constructor(props: IFieldUserHoverCardProps); render(): JSX.Element; }