import * as React from "react"; import { type ClearableInputProps } from "./clearable"; export type SearchInputProps = Omit & { searchIcon?: React.ReactNode; loading?: boolean; loadingLabel?: string; resultCount?: number; shortcut?: React.ReactNode; debounceMs?: number; showMetaOnClear?: boolean; onValueChange?: (value: string) => void; onDebouncedValueChange?: (value: string) => void; }; /** * @deprecated Prefer `Input` with `type="search"` and search-related props for new usage. */ declare const SearchInput: React.ForwardRefExoticComponent & React.RefAttributes>; export { SearchInput };