/** * humancy.request_decision tool * * Present structured options to a human and get their selection. * Enhanced with three-layer decision model support. * Supports both direct (IPC) and cloud (HTTP) modes. */ import { type AgencyTool, type AgencyCoreAPI } from '@generacy-ai/agency'; import { ConnectionModeDetector } from '../connection/index.js'; import type { DecisionStore } from '../storage/index.js'; import type { HumancyHttpClient } from '../http/client.js'; /** * Create the request_decision tool */ export declare function createRequestDecisionTool(coreAPI: AgencyCoreAPI, detector: ConnectionModeDetector, store?: DecisionStore, httpClient?: HumancyHttpClient): AgencyTool; //# sourceMappingURL=request-decision.d.ts.map