import * as React from "react"; import type { SearchInputProp } from "../../props/components/data-entry.prop.js"; export type SearchInputProps = SearchInputProp; export declare function SearchInput({ value: controlledValue, defaultValue, placeholder, debounce, onValueChange, onSearch, label, ariaLabel, className, inputClassName, id, disabled, status, variant, ...ariaProps }: SearchInputProps): React.JSX.Element;