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