import type { ChangeEventHandler, FocusEventHandler, RefObject } from 'react';
interface SearchInputProps {
    inputRef?: RefObject<HTMLInputElement | null>;
    name?: string;
    value?: string;
    placeholder?: string;
    onChange?: ChangeEventHandler<HTMLInputElement>;
    onBlur?: FocusEventHandler<HTMLInputElement>;
    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 {};
