import React from "react"; import { ComboboxOption } from "./types"; type CustomOptionsContextValue = { customOptions: ComboboxOption[]; removeCustomOption: (option: ComboboxOption) => void; addCustomOption: (option: ComboboxOption) => void; setCustomOptions: React.Dispatch>; }; declare const useComboboxCustomOptions: (strict?: S | undefined) => S extends true ? CustomOptionsContextValue : CustomOptionsContextValue | undefined; declare const CustomOptionsProvider: ({ children, value, }: { children: any; value: { isMultiSelect?: boolean; }; }) => React.JSX.Element; export { CustomOptionsProvider, useComboboxCustomOptions };