import React from 'react'; interface SearchInputProps { searchText: string; setSearchText: React.Dispatch>; replaceText: string; setReplaceText: React.Dispatch>; onClose: React.Dispatch>; onReplace: () => void; expand: boolean; setExpand: React.Dispatch>; } declare const SearchInput: React.FC; export default SearchInput;