import type { DOMElement } from '../dom.js'; import type { MatchPosition } from '../render-to-screen.js'; /** * Set the search highlight query on the Ink instance. */ export declare function useSearchHighlight(): { setQuery: (query: string) => void; scanElement: (el: DOMElement) => MatchPosition[]; setPositions: (state: { positions: MatchPosition[]; rowOffset: number; currentIdx: number; } | null) => void; }; //# sourceMappingURL=use-search-highlight.d.ts.map