declare type CopyOutHandler = (src: string) => string; export declare const copy: (src: any, target: any) => Promise; export declare const copyOutDirectory: (srcDir: string, fn?: CopyOutHandler) => Promise; export declare const copyOutFile: (src: string) => Promise; export declare const copyOut: (src: string, fn?: CopyOutHandler) => Promise; export {};