import { Rule } from '@angular-devkit/schematics'; import { NormalizedSchema } from '../../util/normalize-options'; interface Schema extends NormalizedSchema { name: string; project: string; } export default function (schema: Schema): Rule; export {};