UNPKG

openrouter-model-picker

Version:

Third-party React component for OpenRouter model selection

11 lines 493 B
import { ModelInfo, SortConfig } from '../types'; interface ModelTableProps { models: ModelInfo[]; selectedModel?: string; onModelSelect: (modelId: string) => void; sortConfig: SortConfig; onSort: (key: keyof ModelInfo | null, direction?: 'asc' | 'desc') => void; } export declare function ModelTable({ models, selectedModel, onModelSelect, sortConfig, onSort }: ModelTableProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ModelTable.d.ts.map