/*! * Copyright (c) 2020 Ville de Montreal. All rights reserved. * Licensed under the MIT license. * See LICENSE file in the project root for full license information. */ import { IOidcSession, IOidcAuthenticatorConfig } from '@villedemontreal/auth-oidc'; /** * * @param session the OIDC session used to provide the access tokens * @param [authenticatorConfig] the config for customizing this authenticator */ export declare function authenticator(session: IOidcSession, authenticatorConfig?: Readonly): import("./IAxiosPlugin").IAxiosPlugin;