type ExecResult = { stdout: string; stderr: string; exitCode: number; }; declare function runRipgrep(args: string[], opts?: { cwd?: string; env?: NodeJS.ProcessEnv; }): Promise; export { type ExecResult, runRipgrep };