/** * Role spoof mutation - attempts to override system prompts */ import { type CvssScore } from '../severity'; import type { Mutation } from './index'; export declare class RoleSpoofMutation implements Mutation { readonly name = "role-spoof"; readonly description = "Attempts to spoof system roles or override instructions"; readonly severity: "high"; readonly cvssScore: CvssScore; private prefixes; constructor(); mutate(prompt: string): string; } //# sourceMappingURL=role-spoof.d.ts.map