import { KmipStruct } from "../json/KmipStruct"; export declare class TransparentDHPrivateKey implements KmipStruct { private _p; private _q?; private _g; private _j?; private _x; get p(): BigInt; set p(value: BigInt); get q(): BigInt | undefined; set q(value: BigInt | undefined); get g(): BigInt; set g(value: BigInt); get j(): BigInt | undefined; set j(value: BigInt | undefined); get x(): BigInt; set x(value: BigInt); constructor(p: BigInt, q: BigInt, g: BigInt, j: BigInt, x: BigInt); equals(o: any): boolean; toString(): string; } //# sourceMappingURL=TransparentDHPrivateKey.d.ts.map