import { type Tree } from '@nx/devkit';
/**
 * Adds a plugin to the build configuration.
 * @param tree - Nx Devkit Tree
 * @param pathToConfigFile - Path to the build configuration file
 * @param importPath - Path to the plugin
 * @param pluginName - Name of the plugin
 * @param options - Optional but should be defined as a string such as `property: {foo: 'bar'}`
 */
export declare function addBuildPlugin(tree: Tree, pathToConfigFile: string, importPath: string, pluginName: string, options?: string): void;
