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