import type { Plugin } from "@opencode-ai/plugin"; /** * AFT (Agent File Toolkit) plugin for OpenCode. * * Config is loaded from two levels (project overrides user): * - User: ~/.config/opencode/aft.jsonc (or .json) * - Project: /.opencode/aft.jsonc (or .json) * * Tools organized into groups: * - Hoisted (default): read, write, edit, apply_patch, ast_grep_search, ast_grep_replace * and grep/glob when search_index is enabled * - File ops: aft_delete, aft_move * - Reading: aft_outline * - Safety: aft_safety * - Imports: aft_import * - Navigation: aft_callgraph * - Refactoring: aft_refactor */ declare const plugin: Plugin; export default plugin; //# sourceMappingURL=index.d.ts.map