import type { ModelId } from '{{PACKAGE_SCOPE}}/core/shared/types.js'; import { MODEL_COLORS, MODEL_LABELS } from '{{PACKAGE_SCOPE}}/core/shared/types.js'; interface ModelSelectorProps { activeModel: ModelId; onSelect: (model: ModelId) => void; } const MODELS: ModelId[] = ['claude', 'codex', 'gemini']; export function ModelSelector({ activeModel, onSelect }: ModelSelectorProps) { return ( ); }