/**
 * Copyright (c) Spectro Cloud
 * SPDX-License-Identifier: Apache-2.0
 */
/**
 * Generated by orval v7.10.0 🍺
 * Do not edit manually.
 * Palette APIs - 4.7
 * OpenAPI spec version: v1
 */
export type JWKResponse = {
    /** The "alg" (algorithm) parameter identifies the algorithm intended for use with the key */
    alg?: string;
    e?: string;
    /** The "key_ops" (key operations) parameter identifies the operation(s) for which the key is intended to be used */
    key_ops?: string;
    /** The "kid" (key ID) parameter is used to match a specific key */
    kid?: string;
    /** The "kty" (key type) parameter identifies the cryptographic algorithm family used with the key, such as "RSA" or "EC" */
    kty?: string;
    n?: string;
    /** The "use" (public key use) parameter identifies the intended use of the public key */
    use?: string;
};
//# sourceMappingURL=jWKResponse.d.ts.map