import { KmipChoiceKey } from "../json/KmipChoiceKey"; import { TransparentDHPrivateKey } from "./TransparentDHPrivateKey"; import { TransparentDHPublicKey } from "./TransparentDHPublicKey"; import { TransparentECPrivateKey } from "./TransparentECPrivateKey"; import { TransparentECPublicKey } from "./TransparentECPublicKey"; import { TransparentSymmetricKey } from "./TransparentSymmetricKey"; export declare class KeyMaterial extends KmipChoiceKey { constructor(value1?: Uint8Array, value2?: TransparentSymmetricKey, value3?: TransparentDHPrivateKey, value4?: TransparentDHPublicKey, value5?: TransparentECPrivateKey, value6?: TransparentECPublicKey); equals(o: any): boolean; toString(): string; } //# sourceMappingURL=KeyMaterial.d.ts.map