import * as React from "react"; import { BaseDropdownActions, DropdownOptionsTypeProps } from "./index"; declare const OptionsDropdown: ({ options, selectedValue, disabled, title, name, setDropdownOpened, onChange, onSearchChange, onInputChange, inputValue, inputPlaceholder, sufix, dropdownOpened, required, id, }: DropdownOptionsTypeProps & BaseDropdownActions) => React.ReactElement; export default OptionsDropdown;