import { LedgerCustom, LedgerError, LedgerErrorReason } from '../common'; /** * Error thrown when the account referenced in entry is inactive * in the bridge system, but it exists in the system. */ export declare class BridgeAccountInactive 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; }