/** * Look At Tool * * Extract key information from a file to save context tokens. * For large files, returns structure/outline instead of full content. */ import { type ToolDefinition } from "@opencode-ai/plugin"; export interface LookAtArgs { filePath: string; extract?: "structure" | "imports" | "exports" | "all"; } export declare const lookAtTool: ToolDefinition;