import React, { PropsWithChildren } from "react";
import { IPublicClientApplication } from "@azure/msal-browser";
export declare type MsalProviderProps = PropsWithChildren<{
    instance: IPublicClientApplication;
}>;
/**
 * MSAL context provider component. This must be rendered above any other components that use MSAL.
 */
export declare function MsalProvider({ instance, children }: MsalProviderProps): React.ReactElement;
