import type { ToolContext } from "@opencode-ai/plugin/tool"; import { type RawHashlineEdit } from "./normalize-edits"; interface HashlineEditArgs { filePath: string; edits: RawHashlineEdit[]; delete?: boolean; rename?: string; } export declare function executeHashlineEditTool(args: HashlineEditArgs, context: ToolContext): Promise; export {};