export declare const copyDirToTmp: (dir: string, childDirname?: string) => Promise<{
    tmpDir: string;
    removeTmpDir: () => Promise<void>;
}>;
