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