import type { WordAtCursor } from "./types.js"; export declare function replaceWordAtCursor(text: string, wordRange: WordAtCursor, replacement: string): { value: string; cursorPosition: number; };