import { Tree } from '@nx/devkit';
import { Linter, LinterType } from '@nx/eslint';
export interface CypressConfigureSchema {
    name: string;
    js?: boolean;
    directory?: string;
    linter: Linter | LinterType;
    standaloneConfig?: boolean;
    ciTargetName?: string;
    skipFormat?: boolean;
}
export declare function cypressProjectGenerator(tree: Tree, schema: CypressConfigureSchema): Promise<import("@nx/devkit").GeneratorCallback>;
export default cypressProjectGenerator;
