import { KmipStruct } from "../json/KmipStruct"; import { Attributes } from "../types/Attributes"; import { KeyMaterial } from "./KeyMaterial"; export declare class PlainTextKeyValue implements KmipStruct { private _key_material; private _attributes?; constructor(keyMaterial: KeyMaterial, attributes?: Attributes); get keyMaterial(): KeyMaterial; set keyMaterial(value: KeyMaterial); get attributes(): Attributes | undefined; set attributes(value: Attributes | undefined); equals(o: any): boolean; toString(): string; } //# sourceMappingURL=PlainTextKeyValue.d.ts.map