import { type CliError } from "./cli-error.js"; import { type Result } from "./result.js"; declare const loginProfileForShell: () => { shell: "zsh" | "bash"; profilePath: string; } | null; declare const glenPathBlock: (binDir: string) => string; declare const glenPathBlockPresent: (profileText: string) => boolean; declare const addGlenPathBlock: (profilePath: string, binDir: string) => Promise>; declare const removeGlenPathBlock: (profilePath: string) => Promise>; export { addGlenPathBlock, glenPathBlock, glenPathBlockPresent, loginProfileForShell, removeGlenPathBlock, };