import type { Claim } from '../Claim'; export declare enum AssertionLabel { Actions = "c2pa.actions", AdobeCryptoAddresses = "adobe.crypto.addresses", AdobeDictionary = "adobe.dictionary", CreativeWork = "stds.schema-org.CreativeWork" } export interface IAssertionData { /** * Label for the assertion (i.e. cai.identity.v1) */ label: string; /** * Any value in JSON format (must match format for known assertions) */ data: any; } export declare class Assertion { readonly claim: Claim; readonly label: string; protected readonly assertion: IAssertionData; constructor(claim: Claim, data: IAssertionData); get data(): any; } //# sourceMappingURL=Assertion.d.ts.map