export declare class KeycloakConfig {
    private readonly realm;
    private readonly authServerUrl;
    private pubKey;
    constructor(realm: string, authServerUrl: string);
    getRealm(): string;
    getAuthServerUrl(): string;
    publicKey(): Promise<string>;
}
