/** * Converts a OpenAPI path fragment convention to the colon convention that is * commonly used in Node.js and also MSW. * * **Example:** `/users/{id} --> /users/:id` */ export declare function convertToColonPath(path: string, baseUrl?: string): string; //# sourceMappingURL=path-mapping.d.ts.map