import { Tree } from '@nrwl/devkit'; import { EslintPluginGeneratorSchema as Schema } from '../schema'; export interface NormalizedSchema extends Schema { eslintPluginName: string; skipDependencies: boolean; offsetFromRoot: string; projectName: string; projectRoot: string; sourceRoot: string; parsedTags: string[]; skipFormat: boolean; } export declare function normalizeOptions(tree: Tree, options: Schema, isNxProject: boolean): NormalizedSchema;