import { PublicKeyJwk } from '../models/PublicKeyJwk'; export declare class VerificationMethod { 'id': string; 'type': string; 'controller': string; 'publicKeyJwk': PublicKeyJwk; 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(); }