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