import type { ThinkingLevel } from "@elyracode/agent-core"; import { Container, SelectList } from "@elyracode/tui"; /** * Selector for the thinking level of the current model. Only the levels the * model actually supports are offered; the session clamps on selection. */ export declare class ThinkingSelectorComponent extends Container { private selectList; constructor(levels: ThinkingLevel[], currentLevel: ThinkingLevel, onSelect: (level: ThinkingLevel) => void, onCancel: () => void); getSelectList(): SelectList; } //# sourceMappingURL=thinking-selector.d.ts.map