/** The repo a historical transcript ran in, recovered from the `cwd` it * recorded. A checkout that still exists answers for itself. A checkout that * is gone — overwhelmingly a cleaned-up worktree, which lives inside the repo * it was forked from — is recovered from its nearest surviving ancestor, but * only when that ancestor knows the branch the transcript recorded; without * that proof the ancestor could be an unrelated repo the session merely sat * inside. */ export declare const resolveImportWorkspace: (cwd: string | undefined, branch: string | undefined) => { readonly repoName: string; readonly remoteUrl: string; } | null;