import { LedgerCustom, LedgerError, LedgerErrorReason } from '../common'; /** * Error thrown when all entry signatures are valid but there is no * matching signature with the expected ledger key. */ export declare class BridgeEntrySignatureMismatch 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; }