import { OperationMatch } from "../liveValidation/operationSearcher"; import { SpecTransformer } from "./transformer"; export type RegExpWithKeys = RegExp & { _keys: string[]; _hostTemplate?: boolean; _hasMultiPathParam?: boolean; }; export declare const pathRegexTransformer: SpecTransformer; export declare const extractPathParamValue: ({ pathRegex, pathMatch }: OperationMatch) => { [key: string]: string; }; //# sourceMappingURL=pathRegexTransformer.d.ts.map