import { type EditorId } from './templates.js'; /** * Install editor hooks for the given editor. * Returns list of files written. */ export declare function installHooks(editor: EditorId, agentPath: string): string[]; /** * Remove editor hooks for the given editor. * Returns list of files removed. */ export declare function removeHooks(editor: EditorId, agentPath: string): string[]; /** * Detect which editors have hooks installed. */ export declare function detectInstalledHooks(agentPath: string): EditorId[];