// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react // ../../../@azure/msal-react import * as React from 'react'; import { WithMsalProps } from '@azure/msal-react'; export interface IMsalLoginProps { clientId: string; msalScope: string; redirectUri: string; redirectMethod: "popup" | "redirect"; getTenantIdCallback?: (tenantId: string) => void; } export class IAMsalLogin extends React.Component { constructor(props: any); render(): JSX.Element; } export interface IMsalLoginProtectedProps extends WithMsalProps { msalScope: string; redirectMethod: "popup" | "redirect"; getTenantIdCallback?: (tenantId: string) => void; } export interface IMsalLoginProtectedState { hasRegisteredContainer: boolean; }