import { ProjectConfiguration, Tree } from '@nx/devkit'; /** * Validates the project to ensure it can be migrated * * @param tree The virtual file system * @param project the project configuration object for the project * @returns A string if there is an error, otherwise undefined */ export declare function validateProject(tree: Tree, project: ProjectConfiguration): string;