import { ISerializable, Serializable } from "@js-soft/ts-serval"; import { CryptoSignature, ICryptoSignature } from "@nmshd/crypto"; export interface IRelationshipCreationResponseContentSigned extends ISerializable { serializedCreationResponseContent: string; deviceSignature: ICryptoSignature; relationshipSignature: ICryptoSignature; } export declare class RelationshipCreationResponseContentSigned extends Serializable implements IRelationshipCreationResponseContentSigned { serializedCreationResponseContent: string; deviceSignature: CryptoSignature; relationshipSignature: CryptoSignature; static from(value: IRelationshipCreationResponseContentSigned): RelationshipCreationResponseContentSigned; } //# sourceMappingURL=RelationshipCreationResponseContentSigned.d.ts.map