import { ProjectType, Tree } from '@nx/devkit'; export interface GeneratorSchema { /** * TODO major: this property is optional in Nx 20 */ name: string; /** * TODO major: this property is provided by default in Nx 20 */ directory?: string; tags?: string; skipFormat?: boolean; } export interface GeneratorNormalizedSchema extends GeneratorSchema { moduleName: string; projectName: string; projectRoot: string; projectType: ProjectType; parsedTags: string[]; } export declare const normalizeOptions: (tree: Tree, options: GeneratorSchema, projectType: ProjectType) => Promise;