import { Path } from '@angular-devkit/core';
import { Tree } from '@angular-devkit/schematics';
import { Change } from '@schematics/angular/utility/change';
/**
 * Apply changes to a file.
 * @param host Source tree.
 * @param path Path on where to apply changes.
 * @param changes List of changes to apply.
 */
export declare function applyChanges(host: Tree, path: Path, changes: Change[]): void;
