import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { AlertCondition } from "./alert-condition.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type AlertThreshold = { condition?: AlertCondition | undefined; threshold?: string | undefined; }; /** @internal */ export declare const AlertThreshold$inboundSchema: z.ZodMiniType; /** @internal */ export type AlertThreshold$Outbound = { condition?: string | undefined; threshold?: string | undefined; }; /** @internal */ export declare const AlertThreshold$outboundSchema: z.ZodMiniType; export declare function alertThresholdToJSON(alertThreshold: AlertThreshold): string; export declare function alertThresholdFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=alert-threshold.d.ts.map