import { Tree } from '@nx/devkit'; import { BaseNormalizedSchema } from './schema'; export declare function updateBaseTsConfigPaths(tree: Tree, options: BaseNormalizedSchema, path: { importPath: string; absolutePath: string; }): void; export declare function updateTsConfigCompilerOptions(tree: Tree, pathToTsConfig: string, compilerOptions?: { [k: string]: string | boolean | string[]; }): void; export declare function updateTsConfigInclude(tree: Tree, pathToTsConfig: string, include: string[]): void;