import type { WebsiteConfiguration } from '../../config/types'; import type { TmpLocation } from '../../template/tmp'; import type { Task } from '../runner'; type Config = { website: Pick; }; type Ctx = { tmpArchive: TmpLocation; tmpDirectory: TmpLocation; }; export declare function fetchTemplateTask(config: Config): Task; export {};