import { IntentMeta, LedgerIntent, LedgerRecord } from "../../../types/src"; import { IIntentUpdatedHandler } from './interfaces/intent-updated-handler.interface'; /** * Intent updated handler class. */ export declare abstract class IntentUpdatedHandler implements IIntentUpdatedHandler { /** * Executes when receiving an updated intent record from the ledger. * * @param intent intent record that was updated */ abstract execute(intent: LedgerRecord): void; }