import { LedgerCustom, LedgerError, LedgerErrorReason } from '../common'; /** * Error thrown when the entry received doesn’t match the expected schema. * Returned in case when root or data fields don’t match the schema or the * included intent doesn’t match the intent schema. */ export declare class BridgeEntrySchemaInvalid 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; }