import { LedgerCustom, LedgerError, LedgerErrorReason } from '../common'; /** * Error thrown when the account has insufficient balance in the bridge system * to perform the financial transaction specified in entry. */ export declare class BridgeAccountInsufficientBalance 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; }