import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Configuration for prompt injection detection guardrail */ export type PromptInjectionConfig = { /** * Detection threshold (0-1) */ threshold?: number | undefined; /** * The message to return when this guardrail is triggered */ rejectionMessage?: string | undefined; }; /** @internal */ export declare const PromptInjectionConfig$inboundSchema: z.ZodType; /** @internal */ export type PromptInjectionConfig$Outbound = { threshold: number; rejection_message: string; }; /** @internal */ export declare const PromptInjectionConfig$outboundSchema: z.ZodType; export declare function promptInjectionConfigToJSON(promptInjectionConfig: PromptInjectionConfig): string; export declare function promptInjectionConfigFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=promptinjectionconfig.d.ts.map