import { ISerializable, Serializable } from "@js-soft/ts-serval"; import { CryptoCipher, CryptoRelationshipPublicRequest, ICryptoCipher, ICryptoRelationshipPublicRequest } from "@nmshd/crypto"; export interface IRelationshipCreationContentCipher extends ISerializable { cipher: ICryptoCipher; publicCreationContentCrypto: ICryptoRelationshipPublicRequest; } export declare class RelationshipCreationContentCipher extends Serializable implements IRelationshipCreationContentCipher { cipher: CryptoCipher; publicCreationContentCrypto: CryptoRelationshipPublicRequest; static from(value: IRelationshipCreationContentCipher): RelationshipCreationContentCipher; static fromBase64(value: string): RelationshipCreationContentCipher; toBase64(): string; static fromBase64Unknown(value: string): Serializable; } //# sourceMappingURL=RelationshipCreationContentCipher.d.ts.map