import { BaseRule, FileContent, SecurityIssue } from '../types';
export declare class PromptInjectionDetectionRule extends BaseRule {
    readonly name = "prompt-injection-detection";
    readonly description = "Detects potential prompt injection vulnerabilities in AI systems";
    readonly severity: "critical";
    private readonly injectionPatterns;
    private readonly falsePositivePatterns;
    check(fileContent: FileContent): SecurityIssue[];
    private isFalsePositive;
}
//# sourceMappingURL=prompt-injection-detection.d.ts.map