import { ScopedSearchInputProps } from './scoped-search-input.types'; /** * ScopedSearchInput * ============================================================ * A combined input component that integrates a select dropdown with a search input field, * enabling users to filter search by category or field type. * * @see {@link https://nimbus-documentation.vercel.app/components/inputs/scoped-search-input} * * @supportsStyleProps */ export declare const ScopedSearchInput: { (props: ScopedSearchInputProps): import("react/jsx-runtime").JSX.Element; isEmpty: (value: import('./scoped-search-input.types').ScopedSearchInputValue) => boolean; displayName: string; };