import { type TranscriptState } from "./transcript-types.js"; export interface TranscriptMatch { readonly itemId: string; readonly start: number; readonly end: number; } export declare function findMatches(state: TranscriptState, query: string): TranscriptMatch[]; export declare function nextMatchIndex(matches: readonly TranscriptMatch[], current: number): number; export declare function prevMatchIndex(matches: readonly TranscriptMatch[], current: number): number;