import { GeneratorCallback, Tree } from '@nrwl/devkit'; import { LibraryGeneratorSchema } from './schema'; export interface NormalizedSchema extends LibraryGeneratorSchema { name: string; fileName: string; projectRoot: string; routePath: string; projectDirectory: string; parsedTags: string[]; } export declare function libraryGenerator(host: Tree, schema: LibraryGeneratorSchema): Promise; export default libraryGenerator; export declare const librarySchematic: (generatorOptions: LibraryGeneratorSchema) => (tree: any, context: any) => Promise;