import { Rule } from '../types';
/**
 * AI002: Prompt-injection sink.
 *
 * Flags places where user-controlled input is concatenated/templated directly
 * into an LLM prompt (system prompt, messages array, or `prompt:` field).
 *
 * The actual taint analysis lives in the AIScanner; this rule file only
 * carries metadata + an allowlist of file types so the scanner can stay
 * focused.
 */
declare const rule: Rule;
export default rule;
//# sourceMappingURL=AI002.d.ts.map