// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; export interface IProps { tenant: string; token: string; environment?: "Development" | "Test" | "Production"; highlightColor: string; user: IUser; } export class IAAnalytics extends React.Component { constructor(props: IProps); componentWillReceiveProps(props: IProps): void; render(): JSX.Element; } export interface IUser { displayName?: string; userPrincipalName?: string; jobTitle?: string; image?: string; id?: string; userName?: string; title?: string; name?: string; email?: string; photo?: string; loginName?: string; }