import type { PackageManager } from '../../node/packageManager'; import type { TmpLocation } from '../../template/tmp'; import type { Task } from '../runner'; type Ctx = { tmpDirectory: TmpLocation; packageManager: PackageManager; }; export declare function buildTemplateTask(): Task; export {};