import { type TextInputProps } from "../../TextInput"; export interface ComboboxSearchProps extends TextInputProps { /** Determines whether the search input should have `aria-` attribute, `true` by default */ withAriaAttributes?: boolean; /** Determines whether the search input should handle keyboard navigation, `true` by default */ withKeyboardNavigation?: boolean; } export declare function ComboboxSearch(props: ComboboxSearchProps): import("react").JSX.Element;