/// import { IPublicKey, NodeBuffer } from './types'; export declare class VirgilPublicKey implements IPublicKey { readonly identifier: NodeBuffer; readonly lowLevelPublicKey: FoundationModules.PublicKey; private _isDisposed; get isDisposed(): boolean; get key(): Uint8Array; constructor(identifier: Uint8Array, lowLevelPublicKey: FoundationModules.PublicKey); dispose(): void; }