import * as React from "react"; import { Nullable, SelectOption } from "../../types/general"; type ComboboxProps = { items: SelectOption[]; placeholder: Nullable; notFoundPlaceholder: Nullable; value: string; setValue: React.Dispatch>; label: React.ReactElement; }; export declare function Combobox({ items, placeholder, notFoundPlaceholder, label, value, setValue, }: ComboboxProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Combobox.d.ts.map