/** * Chain of Thought injection mutation - attempts to manipulate reasoning */ import { type CvssScore } from '../severity'; import type { Mutation } from './index'; export declare class CotInjectionMutation implements Mutation { readonly name = "cot-injection"; readonly description = "Injects misleading chain-of-thought reasoning"; readonly severity: "high"; readonly cvssScore: CvssScore; private injections; constructor(); mutate(prompt: string): string; } //# sourceMappingURL=cot-injection.d.ts.map