import React from 'react'; import { ComboboxContentItemProps, ComboboxContentProps, ComboboxProps, Data, NoData } from '@udecode/plate-combobox'; export declare function ComboboxItem({ combobox, index, item, onRenderItem, }: ComboboxContentItemProps): React.JSX.Element; export declare function ComboboxContent(props: ComboboxContentProps): React.JSX.Element; /** * Register the combobox id, trigger, onSelectItem * Renders the combobox if active. */ export declare function Combobox({ id, trigger, searchPattern, onSelectItem, controlled, maxSuggestions, filter, sort, disabled: _disabled, ...props }: ComboboxProps): React.JSX.Element | null;