import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ItemListNextPage = { /** * The cursor value to use for the next page of items. */ cursor: string; }; /** @internal */ export declare const ItemListNextPage$inboundSchema: z.ZodType; /** @internal */ export type ItemListNextPage$Outbound = { cursor: string; }; /** @internal */ export declare const ItemListNextPage$outboundSchema: z.ZodType; export declare function itemListNextPageToJSON(itemListNextPage: ItemListNextPage): string; export declare function itemListNextPageFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=itemlistnextpage.d.ts.map