import { JSONWebKeySet } from 'jose';
export declare class IAMFetchClient {
    private readonly logger;
    private openIdBaseUrl;
    private openIdConfig;
    constructor();
    getOpenIdConfig(): Promise<Record<string, any>>;
    getJwks(): Promise<JSONWebKeySet>;
}
