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