import { ProjectConfiguration, Tree } from '@nx/devkit';
import { Schema } from './schema';
export default function (host: Tree, options: Schema): Promise<void>;
export declare function findProjectsWithGeneratorsOrExecutors(host: Tree): Promise<({
    name: string;
    generators: boolean;
    executors: boolean;
} & Omit<ProjectConfiguration, "generators">)[]>;
export declare function projectContainsGeneratorsOrExecutors(host: Tree, project: ProjectConfiguration): false | {
    generators: boolean;
    executors: boolean;
};
