import { BaseGuard } from './base'; import { GuardConfig, GuardResult } from './types'; export declare class PromptInjection extends BaseGuard { constructor(config?: GuardConfig); protected getSystemPrompt(): string; detect(text: string): Promise; }