import { Tree } from '@nx/devkit'; export interface DefaultGeneratorOptions { name: string; directory?: string; tags?: string; } export interface NormalizedSchema extends DefaultGeneratorOptions { projectName: string; projectRoot: string; projectDirectory: string; parsedTags: string[]; } export declare const normalizeOptions: (host: Tree, options: DefaultGeneratorOptions) => NormalizedSchema;