import type { GeneratorCallback } from '@nrwl/devkit'; /** * Run Generator async tasks in priority order. * * @param tasks - An array of generator tasks, listed in priority order. * @returns */ export declare const runTasksInSerial: (...tasks: GeneratorCallback[]) => GeneratorCallback; export type { GeneratorCallback } from '@nrwl/devkit';