import type { AgentTool } from '@earendil-works/pi-agent-core'; export interface UserContextToolOptions { agentId: string; workspaceId: string; getSessionId: () => string | undefined; getProjectId?: () => string | undefined; canRead: () => boolean; } export declare function createUserContextSearchTool(options: UserContextToolOptions): AgentTool; export declare function createUserContextGetTool(options: UserContextToolOptions): AgentTool;