export type DeepInterviewPlaintextAskLeakOption = "Yes, crystallize" | "Adjust wording" | "Missing scope"; export type DeepInterviewPlaintextAskLeakResult = { kind: "deep_interview_plaintext_ask_leak"; matchedOptions: DeepInterviewPlaintextAskLeakOption[]; signals: { optionsHeading: true; restateIntent: true; deepInterviewContext: boolean; }; }; export declare function detectDeepInterviewPlaintextAskLeak(text: string): DeepInterviewPlaintextAskLeakResult | null;