import { Explanation } from '../explain/Explanation'; import EscrowCancelInstructions from '../types/instructions/EscrowCancelInstructions'; import TransactionType from '../types/TransactionType'; /** * An annotation for EscrowCancel transactions. * * @property type - The type of the transaction. * @property offerSequence - An explanation of the offerSequence. * @property owner - An explanation of the owner. */ export interface EscrowCancelAnnotation { readonly type: TransactionType.EscrowCancel; readonly offerSequence: Explanation; readonly owner: Explanation; } /** * Takes a transaction object and returns an annotated transaction object. * The returned object contains explanations about the various transaction features. * * @param transactionInstructions - The input transaction. * @returns An annotated transaction object detailing the various transaction features. */ export declare function annotate(transactionInstructions: EscrowCancelInstructions): EscrowCancelAnnotation; //# sourceMappingURL=EscrowCancelAnnotation.d.ts.map