import type { CopyFilterSync } from 'fs-extra'; export interface Copy { src: string; dest?: string; overwrite?: boolean; filter?: CopyFilterSync; }