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