import { Tree } from "nx/src/generators/tree";
import { Linter, LinterType } from "@nx/eslint";
import { GeneratorCallback } from "@nx/devkit";
export declare function addLinting(host: Tree, options: {
    linter: Linter | LinterType;
    projectName: string;
    projectRoot: string;
    unitTestRunner?: "jest" | "vitest" | "none";
    rootProject?: boolean;
}): Promise<GeneratorCallback>;
