type TransformFn = (input: From) => To; /** * Transform a value at a specific path in a JSON object. * * @param data - The JSON object to transform. * @param path - The path to the value to transform, using dot notation (* matches all elements in an array and ** matches all elements in an object). * @param transformFn - The transformation function to apply to the value. * @returns The transformed JSON object. */ export declare function transformJsonPath(data: unknown, path: string, transformFn: TransformFn): unknown; export declare function renameObjectKeysTransform(renames: Record): TransformFn; export {}; //# sourceMappingURL=transform-json-path.d.ts.map