import { ApiTraffic } from '../../services/traffic/types'; import { OpenAPIV3 } from 'openapi-types'; declare class DebugTrafficImpl implements ApiTraffic { method: OpenAPIV3.HttpMethods; path: string; constructor(method: OpenAPIV3.HttpMethods, path: string); queryString: string; response: ApiTraffic['response']; requestBody: ApiTraffic['requestBody']; withQuery(queryString: string): this; withStatusCode(statusCode: string): this; withJsonResponse(json: any): this; withJsonRequest(json: any): this; withTextRequest(): this; } export declare function DebugTraffic(method: string, path: string): DebugTrafficImpl; export {}; //# sourceMappingURL=traffic.d.ts.map