import { CredentialDefinition } from '../models/CredentialDefinition'; import { CredentialFormat } from '../models/CredentialFormat'; import { SupportProofType } from '../models/SupportProofType'; export declare class SupportedCredentialConfiguration { 'format': CredentialFormat; 'scope': string; 'credentialDefinition': CredentialDefinition; 'cryptographicBindingMethodsSupported'?: Array; 'credentialSigningAlgValuesSupported'?: Array; 'proofTypesSupported': SupportProofType; static readonly discriminator: string | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }