import { type CliError } from "../_utils/cli-error.js"; import { type Result } from "../_utils/result.js"; import { type GlenMode } from "../_utils/state.js"; /** * Set the recording/injection mode. Shared by `glen on|off|incognito|silent`. * Every mode sets the account-wide server preference FIRST (the source of * truth, enforced server-side) and mirrors the accepted state locally only on * success. */ declare const setMode: (mode: GlenMode) => Promise>; export { setMode };