import type { Tree } from '@nx/devkit'; type WorkspaceUpdateOptions = { tree: Tree; projectPath: string; projectName: string; e2e?: boolean; }; export declare const updateWorkspaceTarget: ({ tree, projectPath, projectName, e2e, }: WorkspaceUpdateOptions) => Promise; export {};