import type { VimExCommand } from "./types"; export interface VimExParseContext { currentLine: number; lastLine: number; } export declare function parseExCommand(input: string, context?: VimExParseContext): VimExCommand;