import { IOidcClientConfig, IOidcSession, IOidcSessionConfig } from '@villedemontreal/auth-oidc'; /** * creates a new OIDC session using a IHttpClient implemented by Superagent * @param clientConfig the config for the OIDC client * @param [sessionConfig] the config for the OIDC session * @returns IOidcSession */ export declare function createSession(clientConfig: IOidcClientConfig, sessionConfig?: IOidcSessionConfig): IOidcSession;