import type { OAuth2ErrorCode, OAuth2ErrorOptions } from "./OAuth2Error.js"; import { OAuth2Error } from "./OAuth2Error.js"; export type CredentialErrorCode = "invalid_or_missing_proof" | "invalid_token" | "unsupported_credential_format" | "unsupported_credential_type" | OAuth2ErrorCode; export declare class CredentialError extends OAuth2Error { constructor(errorCode: CredentialErrorCode, options?: OAuth2ErrorOptions); } //# sourceMappingURL=CredentialError.d.ts.map