/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { TextBufferState, TextBufferAction } from './text-buffer.js'; export type VimAction = Extract; export declare function handleVimAction(state: TextBufferState, action: VimAction): TextBufferState;