import * as z from "zod/v3";
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<ModerationLlmv1CategoryThresholds, z.ZodTypeDef, unknown>;
/** @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<ModerationLlmv1CategoryThresholds$Outbound, z.ZodTypeDef, ModerationLlmv1CategoryThresholds>;
export declare function moderationLlmv1CategoryThresholdsToJSON(moderationLlmv1CategoryThresholds: ModerationLlmv1CategoryThresholds): string;
export declare function moderationLlmv1CategoryThresholdsFromJSON(jsonString: string): SafeParseResult<ModerationLlmv1CategoryThresholds, SDKValidationError>;
//# sourceMappingURL=moderationllmv1categorythresholds.d.ts.map