11 lines
522 B
TypeScript
11 lines
522 B
TypeScript
import type { ThinkingLevel } from "@earendil-works/pi-agent-core";
|
|
import { Container, SelectList } from "@earendil-works/pi-tui";
|
|
/**
|
|
* Component that renders a thinking level selector with borders
|
|
*/
|
|
export declare class ThinkingSelectorComponent extends Container {
|
|
private selectList;
|
|
constructor(currentLevel: ThinkingLevel, availableLevels: ThinkingLevel[], onSelect: (level: ThinkingLevel) => void, onCancel: () => void);
|
|
getSelectList(): SelectList;
|
|
}
|
|
//# sourceMappingURL=thinking-selector.d.ts.map
|