import { OpenAPIDiffingQuestions } from '../../../read/types'; import { EitherDiffResult } from '../../types'; import { OpenAPIV3 } from '@useoptic/openapi-utilities'; import { MatchedUrlPath } from '../url-path-diff'; export declare type MatchedOperationPath = { path: string; urlPath: string; method: OpenAPIV3.HttpMethods; pathParameterValues: { [key: string]: string; }; }; export declare function pathMethodOperationDiffer(openapiQuestions: OpenAPIDiffingQuestions): { comparePathAndMethodToOperation: (matchedPath: MatchedUrlPath, method: OpenAPIV3.HttpMethods) => EitherDiffResult; }; //# sourceMappingURL=index.d.ts.map