#!/usr/bin/env node /** * The agent registry governing this directory, if any. * * Checked in the order that matches intent: the directory you are standing in, then VOLE_HOME, * so `vole upgrade` at a server root always means "this server" even when VOLE_HOME points * somewhere else. */ declare function findAgentRegistry(cwd: string): Promise; export { findAgentRegistry };