import React from "react"; interface SearchAndReplaceModalProps { handleClose: () => void; searchText: string; setSearchText: (text: string) => void; replaceText: string; setReplaceText: (text: string) => void; handleReplaceAll: () => void; handleReplace: () => void; handleNextMatch: () => void; handlePreviousMatch: () => void; matchesCount: number; currentMatchIndex: number; searchInputRef: React.RefObject; replaceInputRef: React.RefObject; setReplaceBoxOpen: (open: boolean) => void; ReplaceBoxOpen: boolean; } declare const SearchAndReplaceModal: ({ handleClose, searchText, setSearchText, replaceText, setReplaceText, handleReplaceAll, handleReplace, handleNextMatch, handlePreviousMatch, matchesCount, currentMatchIndex, searchInputRef, replaceInputRef, ReplaceBoxOpen, setReplaceBoxOpen, }: SearchAndReplaceModalProps) => import("react/jsx-runtime").JSX.Element; export default SearchAndReplaceModal;