import { NxJsonConfiguration } from '@nx/devkit';

/**
 * Read the `nx.json` configuration file in the workspace root.
 *
 * @param workspaceRoot - The workspace root directory.
 * @returns The `nx.json` configuration file.
 */
declare const readNxConfig: (workspaceRoot?: string) => Promise<NxJsonConfiguration<string[] | "*">>;

export { readNxConfig };
