import { HttpVerbsEnum } from './httpTypesV2'; export declare enum RelayAuthenticationSchemesEnum { BEARER = "bearer", OAUTH2 = "oauth2", NONE = "none" } export interface HttpRelayRequest { /** The HTTP verb to use for the request. */ verb: HttpVerbsEnum; /** The path relative to this application. */ url: string; /** HTTP headers to relay with the request. */ headers?: Record; /** The body to send. */ body?: unknown; }