/** * Recursively copies a directory from `src` to `dest`. * No-ops if the source directory does not exist. * * @param src - The source directory path. * @param dest - The destination directory path (created recursively if needed). */ export declare const copyDir: (src: string, dest: string) => void; //# sourceMappingURL=fs.d.ts.map