import { ProjectConfiguration } from '@nx/devkit'; /** * Retrieve the project configurations from the workspace. * * @returns The project configurations. */ declare const getProjectConfigurations: () => Promise>; /** * Retrieve the project configurations from the workspace. * * @returns The project configurations. */ declare const getProjectConfiguration: (projectName: string) => TConfig | undefined; export { getProjectConfiguration, getProjectConfigurations };