import { LedgerCustom, LedgerError, LedgerErrorReason } from '../common'; /** * Error thrown when the entry is rejected for the referenced account. * It can be either a rejection of debit for the source, or a rejection of credit * for the target account. */ export declare class BridgeEntryRejected extends LedgerError { /** * * @param detail error detail - message * @param custom custom data record to attach * additional info about the error */ constructor(detail: string, custom?: LedgerCustom); static REASON: LedgerErrorReason; }