import React from 'react'; type Props = { className?: string; defaultValue?: string; onChange?: (value: string) => void; onSubmit?: (value: string) => void; onClear?: (value: string) => void; withButton?: boolean; disabled?: boolean; placeholder?: string; label: string; name: string; suffix?: React.ReactNode; }; declare const SearchInput: React.ForwardRefExoticComponent>; export { SearchInput };