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 GetApiSandboxByIdSessionsRequest = { id: string; }; /** * Helix session ids this sandbox is hosting */ export type GetApiSandboxByIdSessionsResponse = { sessions: Array; }; /** @internal */ export type GetApiSandboxByIdSessionsRequest$Outbound = { id: string; }; /** @internal */ export declare const GetApiSandboxByIdSessionsRequest$outboundSchema: z.ZodMiniType; export declare function getApiSandboxByIdSessionsRequestToJSON(getApiSandboxByIdSessionsRequest: GetApiSandboxByIdSessionsRequest): string; /** @internal */ export declare const GetApiSandboxByIdSessionsResponse$inboundSchema: z.ZodMiniType; export declare function getApiSandboxByIdSessionsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=get-api-sandbox-by-id-sessions.d.ts.map