/** * humancy.notify tool * * Send a non-blocking notification to the human (fire-and-forget). */ import { type AgencyTool, type AgencyCoreAPI } from '@generacy-ai/agency'; import { ConnectionModeDetector } from '../connection/index.js'; import { HumancyHttpClient } from '../http/index.js'; /** * Create the notify tool */ export declare function createNotifyTool(coreAPI: AgencyCoreAPI, detector: ConnectionModeDetector, httpClient?: HumancyHttpClient): AgencyTool; //# sourceMappingURL=notify.d.ts.map