import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SandboxUsageResult, SandboxUsageResult$Outbound } from "./sandboxusageresult.js"; export type SandboxUsageBucket = { object?: "bucket" | undefined; startTime: number; endTime: number; results?: Array | undefined; }; /** @internal */ export declare const SandboxUsageBucket$inboundSchema: z.ZodType; /** @internal */ export type SandboxUsageBucket$Outbound = { object: "bucket"; start_time: number; end_time: number; results?: Array | undefined; }; /** @internal */ export declare const SandboxUsageBucket$outboundSchema: z.ZodType; export declare function sandboxUsageBucketToJSON(sandboxUsageBucket: SandboxUsageBucket): string; export declare function sandboxUsageBucketFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sandboxusagebucket.d.ts.map