import { GeneratorCallback, Tree } from '@nrwl/devkit'; import { InitGeneratorSchema as Schema } from './schema'; export default function (tree: Tree, options: Schema): Promise; /** * Run tasks in serial * TODO: link to source code * @param tasks The tasks to run in serial. */ export declare function runTasksInSerial(...tasks: GeneratorCallback[]): GeneratorCallback;