import { Explanation } from '../explain/Explanation'; import AccountDeleteInstructions from '../types/instructions/AccountDeleteInstructions'; import TransactionType from '../types/TransactionType'; /** * An annotation for AccountDelete transactions. * * @property type - The transaction type. * @property destination - An explanation of the destination. * @property destinationTag - An explanation of the destinationTag. */ export interface AccountDeleteAnnotation { readonly type: TransactionType.AccountDelete; readonly destination: Explanation; readonly destinationTag?: 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: AccountDeleteInstructions): AccountDeleteAnnotation; //# sourceMappingURL=AccountDeleteAnnotation.d.ts.map