import React from "react"; import { SettingsDropdownInput } from "../../settings/settings-dropdown-input"; export interface RepositoryDropdownProps { items: { key: React.Key; label: string }[]; onSelectionChange: (key: React.Key | null) => void; onInputChange: (value: string) => void; defaultFilter?: (textValue: string, inputValue: string) => boolean; } export function RepositoryDropdown({ items, onSelectionChange, onInputChange, defaultFilter, }: RepositoryDropdownProps) { return ( ); }