import { AgentTool } from '@earendil-works/pi-agent-core'; import type { MessageBus } from '../../infra/bus/index.js'; interface MessageContext { channel: string; chatId: string; } export declare function createSendMediaTool(workspace: string, bus: MessageBus, getContext: () => MessageContext | null): AgentTool; export {};