import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { AlertSettings } from "./alert-settings.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type AlertInfo = { alertSettings?: AlertSettings | undefined; timestamp?: string | undefined; valueAtTime?: Date | undefined; }; /** @internal */ export declare const AlertInfo$inboundSchema: z.ZodMiniType; export declare function alertInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=alert-info.d.ts.map