import { JSONWebKeySet } from 'jose'; export interface IHttpClientConfig { allowUnauthorizedCertificates?: boolean; } export declare class IAMFetchClient { private readonly logger; private openIdBaseUrl; private openIdConfig; constructor(); getOpenIdConfig(): Promise>; getJwks(): Promise; }