import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const ComputeLogSource1: { readonly System: "system"; readonly User: "user"; }; export type ComputeLogSource1 = ClosedEnum; export declare const Stream: { readonly Stdout: "stdout"; readonly Stderr: "stderr"; }; export type Stream = ClosedEnum; export type ComputeLog = { id: string; instanceRank?: number | undefined; message: string; source: ComputeLogSource1; stream: Stream; timestamp: Date; }; /** @internal */ export declare const ComputeLogSource1$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ComputeLogSource1$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Stream$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Stream$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ComputeLog$inboundSchema: z.ZodType; /** @internal */ export type ComputeLog$Outbound = { id: string; instance_rank?: number | undefined; message: string; source: string; stream: string; timestamp: string; }; /** @internal */ export declare const ComputeLog$outboundSchema: z.ZodType; export declare function computeLogToJSON(computeLog: ComputeLog): string; export declare function computeLogFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=computelog.d.ts.map