/** * .what = creates symlinks from temp dir paths to repo root paths * .why = enables test temp dirs to reference repo root artifacts without copy * * @throws BadRequestError when symlink target does not exist * @throws BadRequestError when symlink path collides with prior content */ export declare const createSymlinks: (input: { symlinks: Array<{ at: string; to: string; }>; tempDir: string; gitRoot: string; }) => void;