/// import { InputProps } from "../../../types"; export declare type InputWithDropdownItem = { iconUrl: string; text: string; textComplement?: string; }; export interface InputWithDropdownProps extends InputProps { withBg?: boolean; placeholder: string; inputPrefix?: string; items: InputWithDropdownItem[]; customClasses?: string; defaultItem: InputWithDropdownItem; onSelectOption(option: InputWithDropdownItem): void; } declare const InputWithDropdown: ({ withBg, placeholder, inputPrefix, items, onSelectOption, customClasses, defaultItem, ...inputProps }: InputWithDropdownProps) => JSX.Element; export default InputWithDropdown;