import { type ProjectConfiguration } from '@nx/devkit';
/**
 * Get the project configuration.
 *
 * A verified project configuration contains the following fields:
 * - name
 * - sourceRoot
 *
 * @param projectName - The name of the project
 * @returns Project configuration or `null` if not found
 */
export declare const getProjectConfiguration: (projectName: string) => Promise<ProjectConfiguration | null>;
