import { RequestMethod } from "../../../../utils"; import { StringKeyValueMapType } from "../../../types"; declare class InvokeConnectionRequest { method: RequestMethod; queryParams?: StringKeyValueMapType; pathParams?: StringKeyValueMapType; body?: StringKeyValueMapType; headers?: StringKeyValueMapType; constructor(method: RequestMethod, body?: StringKeyValueMapType, headers?: StringKeyValueMapType, pathParams?: StringKeyValueMapType, queryParams?: StringKeyValueMapType); } export default InvokeConnectionRequest;