import { type DOMProps, type QAProps } from '@gravity-ui/uikit'; import type { SearchCounter } from "../types.js"; import "./SearchCompactView.css"; export type SearchCompactProps = DOMProps & QAProps & { value: string; counter?: SearchCounter; onChange: (value: string) => void; onFindPrevious: () => void; onFindNext: () => void; onExpand: () => void; onClose: () => void; }; export declare const SeachCompactView: React.FC;