export declare const getPathParamNames: (path: string) => string[]; export declare const getPathParamSegmentName: (segment: string) => string | undefined; export declare const isPathParamSegment: (segment: string) => boolean; export declare const replacePathParams: (path: string, replace: (name: string) => string) => string; export declare const toColonPath: (path: string) => string; export declare const toOpenApiPath: (path: string) => string;