import React, { HTMLAttributes } from 'react'; import './SearchInput.css'; export declare const SearchInput: React.FC, 'value' | 'onChange'> & { value?: string; onChange?: (e: React.ChangeEvent) => void; onClear?: (value: string) => void; placeholder?: string; }>;