import { Tree } from '@nx/devkit';
/**
 * Insert a statement after the last import statement in a file.
 *
 * For origin of this function, see link below.
 *
 * @see https://github.com/nrwl/nx/blob/master/packages/workspace/src/generators/utils/insert-statement.ts
 */
export declare function insertStatement(tree: Tree, path: string, statement: string): void;
