/** * * Data class representing the details required to inject exchange data. */ export declare class ExchangeDataInjectionDetails { exchangeDataId: string; accessControlSecret: Int8Array; exchangeKey: Int8Array; sharedSignatureKey: Int8Array; verified: boolean; constructor(partial: Partial & Pick); }