import type { IEditor } from 'roosterjs-content-model-types'; import type { FindReplaceContext } from './types/FindReplaceContext'; /** * Move the highlight to next or previous match * @param editor The editor instance * @param context The FindReplaceContext to use * @param forward Whether to move forward or backward */ export declare function moveHighlight(editor: IEditor, context: FindReplaceContext, forward: boolean): void;