import { ISerializable, Serializable } from "@js-soft/ts-serval"; import { CryptoCipher, CryptoRelationshipPublicResponse, ICryptoCipher, ICryptoRelationshipPublicResponse } from "@nmshd/crypto"; export interface IRelationshipCreationResponseContentCipher extends ISerializable { cipher: ICryptoCipher; publicCreationResponseContentCrypto: ICryptoRelationshipPublicResponse; } export declare class RelationshipCreationResponseContentCipher extends Serializable implements IRelationshipCreationResponseContentCipher { cipher: CryptoCipher; publicCreationResponseContentCrypto: CryptoRelationshipPublicResponse; static from(value: IRelationshipCreationResponseContentCipher): RelationshipCreationResponseContentCipher; toBase64(): string; static fromBase64(value: string): RelationshipCreationResponseContentCipher; } //# sourceMappingURL=RelationshipCreationResponseContentCipher.d.ts.map