import { KeyBlock } from "../data_structures/KeyBlock"; import { KmipObject } from "./KmipObject"; export declare class PrivateKey extends KmipObject { private _keyBlock; constructor(keyBlock: KeyBlock); get keyBlock(): KeyBlock; set keyBlock(value: KeyBlock); equals(o: any): boolean; toString(): string; } //# sourceMappingURL=PrivateKey.d.ts.map