import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Configuration for banned words guardrail */ export type BanWordsConfig = { /** * List of banned words or phrases */ words?: Array | undefined; /** * The message to return when this guardrail is triggered */ rejectionMessage?: string | undefined; }; /** @internal */ export declare const BanWordsConfig$inboundSchema: z.ZodType; /** @internal */ export type BanWordsConfig$Outbound = { words?: Array | undefined; rejection_message: string; }; /** @internal */ export declare const BanWordsConfig$outboundSchema: z.ZodType; export declare function banWordsConfigToJSON(banWordsConfig: BanWordsConfig): string; export declare function banWordsConfigFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=banwordsconfig.d.ts.map