import { Rule } from '@angular-devkit/schematics';
/**
 * Update a JSON File
 *
 * The callback function gets the actual file
 */
export declare function updateJsonFile<T>(path: string, cb: (jsonData: T) => T): Rule;
