import { Proof1 } from '../models/Proof1'; import { ResourceResolutionMethod } from '../models/ResourceResolutionMethod'; export declare class CredentialSchemaResponse { 'guid': string; 'id': string; 'longId'?: string; 'name': string; 'version': string; 'tags'?: Array; 'description': string; 'type': string; 'schema': any | null; 'author': string; 'authored': Date; 'proof'?: Proof1; 'resolutionMethod': ResourceResolutionMethod; 'kind': string; 'self': string; 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(); }