import * as React from "react"; import type { SearchSelectProp } from "../../props/components/data-entry.prop.js"; export type { SearchSelectProp, SearchSelectProp as SearchSelectProps, SearchSelectBaseProp, SearchSelectSingleProp, SearchSelectMultipleProp, SearchSelectOptionProp, SearchSelectOptionProp as SearchSelectOption, SearchSelectLoadParamsProp, SearchSelectLoadResultProp, } from "../../props/components/data-entry.prop.js"; /** * SearchSelect — a searchable single-select combobox with a debounced search box, optional * optgroup-style grouping (`option.group`), and loading/empty states. Drive it EITHER remotely * with `loadOptions({ query, page })` (server search + infinite scroll) OR with a static `options` * array (client-side filter) — the latter supersedes the legacy `Autocomplete`. */ export declare function SearchSelect(props: SearchSelectProp): React.JSX.Element;