import { LedgerCustom, LedgerError, LedgerErrorReason } from '../common'; /** * Error thrown when the response returned by the bridge for a request * proxied from the ledger is invalid, mainly due to the schema * of the returned data not matching the expected schema. This can happen * in requests such as: * - Anchor querying * - Anchor lookup */ export declare class BridgeProxyResponseInvalid 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; }