/** * What the spinner says while a turn is thinking rather than running a tool. * * One fixed word for every wait in every turn reads as a progress bar that is * not moving — the same three syllables whether the answer took a second or a * minute, and no way to tell a turn that is working from one that is stuck. * A word that changes as the turn moves through its steps says the session is * alive, which is the only thing a spinner can honestly report. * * Short, gerunds, and unambiguous about the fact that nothing is being done to * anything yet. A few are freighted on purpose. */ export declare const ASK_THINKING_WORDS: readonly string[]; /** * A word for the next wait, never the one just used. * * Repeating straight after itself is the one draw that looks like the spinner * is stuck rather than moving on, which is the whole thing this avoids. */ export declare function pickThinkingWord(previous?: string): string; //# sourceMappingURL=thinking.d.ts.map