import { NavigationClient } from '@azure/msal-browser'; /** * Extending the default NavigationClient allows you to overwrite just navigateInternal while continuing to use the default navigateExternal function * If you would like to overwrite both you can implement INavigationClient directly instead */ declare class CustomNavigationClient extends NavigationClient { constructor(history: any); // This function will be called anytime msal needs to navigate from one page in your application to another navigateInternal(url: any, options: any): Promise; } export default CustomNavigationClient; //# sourceMappingURL=CustomNavigationClient.d.ts.map