import type { ChangeEventHandler, FocusEventHandler, RefObject } from 'react'; interface SearchInputProps { inputRef?: RefObject; name?: string; value?: string; placeholder?: string; onChange?: ChangeEventHandler; onBlur?: FocusEventHandler; onClear?: () => void; autoFocus?: boolean; size?: 'small' | 'medium'; } export declare const SearchInput: ({ inputRef, name, placeholder, onChange, onBlur, onClear, value, autoFocus, size, }: SearchInputProps) => import("react/jsx-runtime").JSX.Element; export declare const StickySearchInput: (props: SearchInputProps) => import("react/jsx-runtime").JSX.Element; export {};