import { Linter, LinterType } from '@nx/eslint';
import { GeneratorCallback, Tree } from '@nx/devkit';
interface NormalizedSchema {
    linter?: Linter | LinterType;
    projectName: string;
    projectRoot: string;
    setParserOptionsProject?: boolean;
    tsConfigPaths: string[];
    skipPackageJson?: boolean;
    addPlugin?: boolean;
}
export declare function addLinting(host: Tree, options: NormalizedSchema): Promise<GeneratorCallback>;
export {};
