import { IChassisContext } from "../interfaces"; export declare class KeycloakCerts { protected context: IChassisContext; protected url: string; BEGIN_KEY: string; END_KEY: string; cert: any; constructor(context: IChassisContext, url: string); reload(): void; getKey(kid: any): any; verify(key: any): void; getPublicKey(modulus: any, exponent: any): string; convertToHex(str: any): string; encodeLength(n: any): any; toLongHex(number: any): any; toHex(number: any): any; }