import type { ChatMessage } from "../../../types.js"; export interface PromptClassification { readonly buildLikeTurn: boolean; readonly pentestLikeTurn: boolean; readonly narrowNmapOperation: boolean; readonly informationalQuery: boolean; readonly idleOrSocialPrompt: boolean; readonly suppressDiagnostics: boolean; } export declare const classifyTurnPrompt: (prompt: string, history: ChatMessage[] | undefined) => PromptClassification;