import { KmipStruct } from "../json/KmipStruct"; export declare class DecryptResponse implements KmipStruct { private _unique_identifier; private _data?; private _correlation_value?; constructor(unique_identifier: string, data?: Uint8Array, correlation_value?: Uint8Array); get unique_identifier(): string; set unique_identifier(value: string); get data(): Uint8Array | undefined; set data(value: Uint8Array | undefined); get correlation_value(): Uint8Array | undefined; set correlation_value(value: Uint8Array | undefined); equals(o: any): boolean; toString(): string; } //# sourceMappingURL=DecryptResponse.d.ts.map