import { GeneratorCallback, Tree } from '@nrwl/devkit'; import { ComponentGeneratorSchema } from './schema'; export interface NormalizedSchema extends ComponentGeneratorSchema { projectSourceRoot: string; className: string; } export declare function componentGenerator(host: Tree, schema: ComponentGeneratorSchema): Promise; export default componentGenerator; export declare const componentSchematic: (generatorOptions: ComponentGeneratorSchema) => (tree: any, context: any) => Promise;