import { ChangeEventHandler, FocusEventHandler, JSX, RefObject } from "react"; //#region src/components/Search/SearchInput.d.ts interface SearchInputProps { inputRef?: RefObject; name?: string; value?: string; placeholder?: string; onChange?: ChangeEventHandler; onBlur?: FocusEventHandler; onClear?: () => void; autoFocus?: boolean; size?: "small" | "medium"; } declare const SearchInput: ({ inputRef, name, placeholder, onChange, onBlur, onClear, value, autoFocus, size }: SearchInputProps) => JSX.Element; //#endregion export { SearchInput }; //# sourceMappingURL=SearchInput.d.ts.map