/** * Build the system prompt for redact method with specified entities * @param entities Optional list of entity types to redact. If not provided, uses default entities. * @param rewrite When true, rewrites text contextually instead of using placeholders. * @returns Complete system prompt with entities section */ export declare function buildRedactSystemPrompt(entities?: string[], rewrite?: boolean): string; /** * Default system prompt for the redact method * Identifies and redacts sensitive/dangerous content * @deprecated Use buildRedactSystemPrompt() instead */ export declare const REDACT_SYSTEM_PROMPT: string; /** * Build the user message for redact analysis */ export declare function buildRedactUserMessage(input: string): string; //# sourceMappingURL=redact.d.ts.map