import { types } from "../../../ledger-sdk/src"; import { BridgePrepareAction } from '../command/types'; import { BankJobStatus } from './types'; export declare class BankJobData { handle: types.LedgerHandle; entry: types.LedgerHandle; action: BridgePrepareAction | types.BridgeCommandAction; status: BankJobStatus; suspendedUntil?: Date; error?: any; state?: any; moment?: Date; }