import { type CliError } from "../_utils/cli-error.js"; import { type Result } from "../_utils/result.js"; type UninstallContext = { readonly home?: string; readonly cwd?: string; }; /** Completely removes every safely identifiable local artifact owned by Glen. */ declare const uninstall: (context?: UninstallContext) => Promise>; export { uninstall };