import type { ILinkedDataProof } from "./ILinkedDataProof";
export interface IIotaLinkedDataProof extends ILinkedDataProof {
    proofValue: {
        channelID: string;
        anchorageID: string;
        /** Message ID is optional and in that case. */
        msgID?: string;
        /** The message ID on Layer 1. */
        msgIDL1?: string;
    };
}
