export = Jwks;
declare class Jwks {
    constructor(keys?: any[]);
    keys: any;
    /**
     * Retrieves the JWK (JSON Web Key) associated with the specified key ID (kid).
     * @param {string} kid - The key ID (kid) of the JWK to retrieve.
     * @returns {Jwk} - The JWK associated with the specified key ID.
     * @throws {MissingKidError} - If the JWKS does not contain a key for the specified key ID.
     */
    get(kid: string): Jwk;
}
import Jwk = require("./Jwk");
//# sourceMappingURL=Jwks.d.ts.map