// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; export interface IThemeProps { environment?: "Development" | "Test" | "Production"; tenant: string; token: string; } export class IATheme extends React.Component { constructor(props: IThemeProps); componentWillReceiveProps(props: IThemeProps): void; render(): JSX.Element; }