import { type CliError } from "../_utils/cli-error.js"; import { type Result } from "../_utils/result.js"; /** * Toggle the account-wide skill-nudge preferences (`glen suggestions * skill-create|skill-use on|off`). Server-side only — the server stops (or * resumes) generating the nudge for every machine and agent; nothing is * mirrored into local state, so a failed call means nothing changed. */ declare const suggestions: (kind?: string, stateArg?: string) => Promise>; export { suggestions };