import { ITextField } from "../_types/ITextField"; /** * Moves the cursor horizontally (left or right, positive is right) * @param textField The text field ot move the cursor for * @param direction The movement direction * @param expandSelection Whether to alter the current text selection * @param jumpWord Whether to jump a whole word (moving a word incros instead of a character) */ export declare function moveCursorHorizontal(textField: ITextField, direction?: number, expandSelection?: boolean, jumpWord?: boolean): void; //# sourceMappingURL=moveCursorHorizontal.d.ts.map