import { LedgerCustom, LedgerError, LedgerErrorReason } from '../common'; /** * Error thrown when the data received in entry doesn’t match the intent included in the entry. * In case when source, target, amount or symbol in the entry doesn’t match the related claim in the intent. */ export declare class BridgeEntryMismatch 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; }