import type { WebsiteConfiguration } from '../../config/types'; import type { Task } from '../runner'; import type { ResolvedMagidocTemplateConfig } from './resolveTemplateConfig'; type Config = { website: Pick; }; type Ctx = { templateConfiguration: ResolvedMagidocTemplateConfig; }; export declare function copyStaticAssetsTask(config: Config): Task; export {};