import { type DOMProps } from '@gravity-ui/uikit'; import type { SearchCounter, SearchState } from "../types.js"; import "./SearchCardView.css"; export type SearchCardViewProps = DOMProps & { counter?: SearchCounter; searchState: SearchState; onClose: () => void; onSearchChange: (value: string) => void; onReplacementChange: (value: string) => void; onFindPrevious: () => void; onFindNext: () => void; onReplace: () => void; onReplaceAll: () => void; onWholeWordChange: (value: boolean) => void; onCaseSensitiveChange: (value: boolean) => void; }; export declare const SearchCardView: React.FC;