import { ProjectConfiguration, Tree } from '@nx/devkit'; interface ImportOptions { importPath: string; entryPoints: { /** * relative paths need to be prefixed with './' for deno to treat as a local file import */ deno: string; node?: string; }; } export declare function addImports(tree: Tree, options: ImportOptions): void; export declare function getImportPathForProjectName(tree: Tree, projectConfig: ProjectConfiguration): { importAlias: string; importPath: string; }; export {};