/** * UserPromptSubmit Hook * * 사용자가 프롬프트를 제출할 때마다 실행됩니다. * 프롬프트 기반 실시간 메모리 검색 + 주입으로 * 세션 중 축적된 메모리를 즉시 활용합니다. * * 성능 타겟: p50 < 30ms, p99 < 100ms */ import type { UserPromptSubmitContext } from '../types/index.js'; /** 테스트용 캐시 리셋 */ export declare function resetQueryCache(): void; export declare function handleUserPromptSubmit(context: UserPromptSubmitContext): Promise; export declare function main(): Promise; //# sourceMappingURL=user-prompt-submit.d.ts.map