/** * Instruction flip mutation - inverts or negates instructions */ import { type CvssScore } from '../severity'; import type { Mutation } from './index'; export declare class InstructionFlipMutation implements Mutation { readonly name = "instruction-flip"; readonly description = "Inverts or negates instructions to test guardrails"; readonly severity: "medium"; readonly cvssScore: CvssScore; private flips; constructor(); mutate(prompt: string): string; } //# sourceMappingURL=instruction-flip.d.ts.map