import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ComputeLog, ComputeLog$Outbound } from "./computelog.js"; export type ComputeLogList = { nextCursor: string | null; total: number; data: Array; }; /** @internal */ export declare const ComputeLogList$inboundSchema: z.ZodType; /** @internal */ export type ComputeLogList$Outbound = { next_cursor: string | null; total: number; data: Array; }; /** @internal */ export declare const ComputeLogList$outboundSchema: z.ZodType; export declare function computeLogListToJSON(computeLogList: ComputeLogList): string; export declare function computeLogListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=computeloglist.d.ts.map