import { type Result } from "./result.js"; declare const agentsJsonPath: () => string; declare const isExecutable: (p: string) => boolean; declare const desktopAppBin: (bin: string) => string | null; declare const findBin: (bin: string) => string | null; declare const persistAgentPath: (bin: string, path: string) => Promise>; export { findBin, desktopAppBin, persistAgentPath, agentsJsonPath, isExecutable, };