import type { SpawnOptionsWithoutStdio } from 'node:child_process'; type ExtractArguments = { treeIsh: string; dest: string; gitProjectRoot?: string; spawnOptions?: SpawnOptionsWithoutStdio; }; type ExtractResult = { treeIsh: string; dir: string; }; declare function extract({ treeIsh, dest, gitProjectRoot, spawnOptions }: ExtractArguments): Promise; type ExistsArguments = { treeIsh: string; gitProjectRoot?: string; spawnOptions?: SpawnOptionsWithoutStdio; }; declare function exists({ treeIsh, gitProjectRoot, spawnOptions }: ExistsArguments): Promise; export { extract, exists }; //# sourceMappingURL=index.d.mts.map