import { Assertion, AssertionLabel, IAssertionData } from './Assertion'; import type { Claim } from '../Claim'; export interface IAdobeCryptoAddressesAssertionData extends IAssertionData { label: AssertionLabel.AdobeCryptoAddresses; data: { [type: string]: string[]; }; } export declare class AdobeCryptoAddressesAssertion extends Assertion { protected readonly assertion: IAdobeCryptoAddressesAssertionData; constructor(claim: Claim, data: IAdobeCryptoAddressesAssertionData); } //# sourceMappingURL=AdobeCryptoAddressesAssertion.d.ts.map