import { KeyWrappingData } from "../data_structures/KeyWrappingData"; import { KmipStruct } from "../json/KmipStruct"; import { KeyCompressionType } from "../types/KeyCompressionType"; import { KeyFormatType } from "../types/KeyFormatType"; import { KeyWrapType } from "../types/KeyWrapType"; export declare class Get implements KmipStruct { private _unique_identifier?; private _key_format_type?; private _key_wrap_type?; private _key_compression_type?; private _key_wrapping_data?; constructor(unique_identifier?: string, key_format_type?: KeyFormatType, key_wrap_type?: KeyWrapType, key_compression_type?: KeyCompressionType, key_wrapping_data?: KeyWrappingData); get unique_identifier(): string | undefined; set unique_identifier(value: string | undefined); get key_format_type(): KeyFormatType | undefined; set key_format_type(value: KeyFormatType | undefined); get key_wrap_type(): KeyWrapType | undefined; set key_wrap_type(value: KeyWrapType | undefined); get key_compression_type(): KeyCompressionType | undefined; set key_compression_type(value: KeyCompressionType | undefined); get key_wrapping_data(): KeyWrappingData | undefined; set key_wrapping_data(value: KeyWrappingData | undefined); equals(o: any): boolean; toString(): string; } //# sourceMappingURL=Get.d.ts.map