UNPKG

openrouter-model-picker

Version:

Third-party React component for OpenRouter model selection

14 lines 530 B
import { FilterState } from '../types'; interface FilterBarProps { filterState: FilterState; onFilterChange: (key: keyof FilterState, value: any) => void; onClearFilters: () => void; availableProviders: string[]; filterStats: { total: number; filtered: number; }; } export declare function FilterBar({ filterState, onFilterChange, onClearFilters, availableProviders, filterStats }: FilterBarProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=FilterBar.d.ts.map