import { ParameterObject } from '../types'; import { OpenAPI } from '@har-sdk/core'; export declare const getParameters: (spec: OpenAPI.Document, path: string, method: string) => ParameterObject[]; export declare const filterLocationParams: (params: ParameterObject[], location: string) => ParameterObject[];