/** * Extracted chip components for the status bar. * * Moved out of the ~1543-line status-bar.tsx monolith to keep each concern * in its own file. All three components are internal to the status bar and * not expected to be imported from outside the status-bar module. */ import type React from 'react'; import { type AnimationStyle } from './animation-style.js'; import type { BrainStatusChip, StatusBarProps } from './status-bar.js'; export declare function BrainChip({ brain, monochrome, }: { brain: BrainStatusChip; monochrome?: boolean; }): React.ReactElement; export declare function EternalStageChip({ stage, monochrome, }: { stage: NonNullable; monochrome?: boolean; }): React.ReactElement; /** * ThinkingChip — render the working/thinking label with the chosen * animation style. Picks between the 5 styles (rainbow/wave/pulse/ * dots/breathe) plus the meta-mode `cycle` that rotates through the * variant styles every `CYCLE_INTERVAL_SECONDS`. Rainbow remains * the per-glyph Catppuccin pastel hue sweep (the original wave UI); * the other three reuse the helpers from `animation-style.tsx`. */ export declare function ThinkingChip({ text, style, phase, cycleTick, }: { text: string; style: AnimationStyle | 'cycle'; phase: number; cycleTick: number; }): React.ReactElement; //# sourceMappingURL=status-bar-chips.d.ts.map