import type { FocusEventHandler, FormEventHandler } from 'react'; interface SearchInputProps { name?: string; value?: string; placeholder?: string; onChange?: FormEventHandler; onBlur?: FocusEventHandler; } export declare const SearchInput: ({ name, placeholder, onChange, onBlur, value, }: SearchInputProps) => import("react/jsx-runtime").JSX.Element; export declare const StickySearchInput: ({ ...rest }: SearchInputProps) => import("react/jsx-runtime").JSX.Element; export {};