export declare enum HttpVerbsEnum { GET = "GET", POST = "POST", PUT = "PUT", PATCH = "PATCH", DELETE = "DELETE" } export interface HttpRequest { /** The HTTP verb to use for the request. */ verb: HttpVerbsEnum; /** The path relative to this application. */ path: string; /** The body to send. */ body?: unknown; } export interface HttpResponse { /** HTTP status code */ status: number; /** Headers of the response */ headers: Record; /** Body of the response. */ body: unknown; }