import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ModerationLlmv1CategoryThresholds = { sexual?: number | null | undefined; hateAndDiscrimination?: number | null | undefined; violenceAndThreats?: number | null | undefined; dangerousAndCriminalContent?: number | null | undefined; selfharm?: number | null | undefined; health?: number | null | undefined; financial?: number | null | undefined; law?: number | null | undefined; pii?: number | null | undefined; }; /** @internal */ export declare const ModerationLlmv1CategoryThresholds$inboundSchema: z.ZodType; /** @internal */ export type ModerationLlmv1CategoryThresholds$Outbound = { sexual?: number | null | undefined; hate_and_discrimination?: number | null | undefined; violence_and_threats?: number | null | undefined; dangerous_and_criminal_content?: number | null | undefined; selfharm?: number | null | undefined; health?: number | null | undefined; financial?: number | null | undefined; law?: number | null | undefined; pii?: number | null | undefined; }; /** @internal */ export declare const ModerationLlmv1CategoryThresholds$outboundSchema: z.ZodType; export declare function moderationLlmv1CategoryThresholdsToJSON(moderationLlmv1CategoryThresholds: ModerationLlmv1CategoryThresholds): string; export declare function moderationLlmv1CategoryThresholdsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=moderationllmv1categorythresholds.d.ts.map