import { Tree } from '@angular-devkit/schematics'; export declare function toFileName(s: string): string; export interface NormalizedSchema { name: string; scope: string; isNx: boolean; projectRoot: string; projectDirectory: string; parsedTags: string[]; directory?: string; tags?: string; } export interface BaseSchema { name: string; directory?: string; tags?: string; } export declare const normalizeOptions: (host: Tree, options: Schema) => NormalizedSchema & Schema;