import { Rule } from '@angular-devkit/schematics';
/**
 * Checks whether the project exists in the workspace.
 * Throws an Error if the project is not found.
 *
 * @param schema The options provided to the schematic
 */
export declare function checkProjectExists(schema: {
    projectName: string;
}): Rule;
