export * from "./detector"; export * from "./constants"; export * from "./types"; export declare function createKeywordDetectorHook(): { "chat.message": (input: { sessionID: string; agent?: string; model?: { providerID: string; modelID: string; }; messageID?: string; }, output: { message: Record; parts: Array<{ type: string; text?: string; [key: string]: unknown; }>; }) => Promise; event: ({ event, }: { event: { type: string; properties?: unknown; }; }) => Promise; };