/// import { IPrivateKey, NodeBuffer } from './types'; export declare class VirgilPrivateKey implements IPrivateKey { readonly identifier: NodeBuffer; readonly lowLevelPrivateKey: FoundationModules.PrivateKey; private _isDisposed; get isDisposed(): boolean; constructor(indentifier: Uint8Array, lowLevelPrivateKey: FoundationModules.PrivateKey); dispose(): void; }