import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { DebugSession } from "./debugsession.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; /** * Paginated response */ export type DebugSessionListResponse = { /** * Items in this page */ items: Array; /** * Cursor for the next page, null if last page */ nextCursor: string | null; }; /** @internal */ export declare const DebugSessionListResponse$inboundSchema: z.ZodType; export declare function debugSessionListResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=debugsessionlistresponse.d.ts.map