import type { Mode } from "../../types.js"; export declare const MODE_CYCLE_ORDER: readonly Mode[]; /** Next mode in the cycle, wrapping around; unknown modes fall back to first. */ export declare function nextMode(current: Mode): Mode; /** One-line description of what each mode does, for the switch toast. */ export declare function modeSwitchSummary(mode: Mode): string;