import { LedgerCustom, LedgerError, LedgerErrorReason } from '../common'; /** * Error thrown when record hash received doesn’t match * the actual record data. */ export declare class CryptoHashInvalid 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; }