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