import type { AgentTool } from '@earendil-works/pi-agent-core'; export interface CreateReadFileToolOptions { /** When set and the path is a bare profile filename (e.g. SOUL.md), try this root if not in workspace. */ profileMarkdownRoot?: string; } export declare function createReadFileTool(workspace: string, options?: CreateReadFileToolOptions): AgentTool;