/** * HTTP API * 基于 SPEC-SRV-001 和 SPEC-SRV-005 * * 支持 SDK 上报和 AI 查询 */ import { Hono } from 'hono'; import type { BehaviorStore } from './store/behaviorStore'; import type { ErrorStore } from './store/errorStore'; import type { BehaviorDetector } from './detector/behaviorDetector'; import type { AlertDetector } from './detector/alertDetector'; export declare function createHttpApi(store: BehaviorStore, errorStore?: ErrorStore, behaviorDetector?: BehaviorDetector, alertDetector?: AlertDetector): Hono; //# sourceMappingURL=httpApi.d.ts.map