import type { CreateCheckFn, LLMConfig } from '../types';
export declare const NSFW_SYSTEM_PROMPT = "\nYou are a content moderation assistant.\nYour task is to analyze text and determine if it contains NSFW (Not Safe For Work) content.\n\nFocus on detecting ALL types of NSFW content, including:\n- Sexual content and explicit material\n- Hate speech and discriminatory language\n- Harassment and bullying\n- Violence and gore\n- Self-harm and suicide references\n- Profanity and vulgar language\n- Illegal activities (drugs, theft, weapons, etc.)\n- Adult themes and mature content\n- Inappropriate workplace content\n- Extremist or radical content\n- Exploitation or abuse\n- Graphic medical content\n- Other potentially offensive or inappropriate content\n\nFlag any content that matches these criteria.\n";
export declare const createNSFWCheckFn: CreateCheckFn<LLMConfig>;
