import { type CliError } from "../_utils/cli-error.js"; import { type Result } from "../_utils/result.js"; /** * Back-compat shim for the pre-tri-state CLI. `glen incognito` (no arg) and * `glen incognito on` enter incognito; `glen incognito off` resumes normal * recording (mode "on"). New code should prefer `glen on|off|incognito`. */ declare const incognito: (stateArg?: string) => Promise>; export { incognito };