/** @jsxImportSource @opentui/react */ /** * Searchable picker (models, providers, history, …). * * Quiet chrome: muted header boundary, soft zebra rows (no neon per-row rules). * Provider rows show the configured model in green (classic parity). */ import { type ReactNode } from "react"; import type { AppServices } from "../../../ui-core/bootstrap/composition-root.js"; import type { Theme } from "../../../ui-core/rendering/theme.js"; import type { PickerRequest } from "../../../ui-core/controllers/overlay-controller.js"; export interface PickerProps { readonly services: AppServices; readonly theme: Theme; readonly request: PickerRequest; } export declare function Picker(props: PickerProps): ReactNode;