import { LedgerCustom, LedgerError, LedgerErrorReason } from '../common'; /** * Error thrown when any of received record signatures is invalid. * Triggered by first invalid signature. */ export declare class CryptoSignatureInvalid 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; }