import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdk-validation-error.js"; export type GetApiSandboxByIdStreamRequest = { id: string; since?: number | undefined; }; /** * Successful response */ export type GetApiSandboxByIdStreamResponse = {}; /** @internal */ export type GetApiSandboxByIdStreamRequest$Outbound = { id: string; since?: number | undefined; }; /** @internal */ export declare const GetApiSandboxByIdStreamRequest$outboundSchema: z.ZodMiniType; export declare function getApiSandboxByIdStreamRequestToJSON(getApiSandboxByIdStreamRequest: GetApiSandboxByIdStreamRequest): string; /** @internal */ export declare const GetApiSandboxByIdStreamResponse$inboundSchema: z.ZodMiniType; export declare function getApiSandboxByIdStreamResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=get-api-sandbox-by-id-stream.d.ts.map