import { LedgerCustom, LedgerError, LedgerErrorReason } from '../common'; /** * Error thrown when he (banking) core system responds with an invalid * transfer information error */ export declare class BridgeTransferInformationInvalid 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; }