import React from "react"; import { ComboboxProps } from "./types.js"; /** * A component that allows the user to search in a list of options * * Has options for allowing only one or multiple options to be selected, * or adding new, user-submitted values. * * @see [📝 Documentation](https://aksel.nav.no/komponenter/core/combobox) * * @example * ```jsx * const options = ["apple", "banana", "orange"]; * * return ( * * ) * ``` */ declare const ComboboxProvider: React.ForwardRefExoticComponent>; export default ComboboxProvider;