import { KmipStruct } from "../json/KmipStruct"; export declare class TransparentDHPublicKey implements KmipStruct { private _p; private _q?; private _g; private _j?; private _y; 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 y(): BigInt; set y(value: BigInt); constructor(p: BigInt, g: BigInt, y: BigInt, q?: BigInt, j?: BigInt); equals(o: any): boolean; toString(): string; } //# sourceMappingURL=TransparentDHPublicKey.d.ts.map