import type * as ts from 'typescript'; import { Tree } from '@nrwl/devkit'; import { Config } from '@jest/types'; export declare function addOrUpdateProperty(tree: Tree, object: ts.ObjectLiteralExpression, properties: string[], value: unknown, path: string): any; export declare function removeProperty(object: ts.ObjectLiteralExpression, properties: string[]): ts.PropertyAssignment | null; /** * Should be used to get the jest config object as AST */ export declare function jestConfigObjectAst(fileContent: string): ts.ObjectLiteralExpression; /** * Returns the jest config object * @param host * @param path */ export declare function jestConfigObject(host: Tree, path: string): Partial & { [index: string]: any; };