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