import { type ProjectConfiguration, type Tree } from '@nx/devkit'; /** * Adds the nx-go plugin to the nx.json if it's not already there. * * @param tree project tree object */ export declare const addNxPlugin: (tree: Tree) => void; /** * Ensures that go configuration files are included as a sharedGlobal, * so any changes will trigger projects to be flagged as affected. * * @param tree project tree object */ export declare const ensureGoConfigInSharedGlobals: (tree: Tree) => void; /** * Checks if a Nx project is using the nx-go plugin. * * @param project project configuration object */ export declare const isProjectUsingNxGo: (project: ProjectConfiguration) => boolean;