import { HttpResponseInterface } from '../contract'; /** * This error will be triggered when response does not satisfy given assertion. */ export declare class AssertionError extends Error { readonly response: HttpResponseInterface; constructor(response: HttpResponseInterface, message?: string | null); }