import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { Item, Item$Outbound } from "./item.js"; export type Items = { /** * Number of items were found by request * * @deprecated field: This will be removed in a future release, please migrate away from it as soon as possible. */ total?: number | undefined; /** * Continuation token to paginate items search result */ continuation?: string | undefined; /** * List of found items */ items: Array; }; /** @internal */ export declare const Items$inboundSchema: z.ZodType; /** @internal */ export type Items$Outbound = { total?: number | undefined; continuation?: string | undefined; items: Array; }; /** @internal */ export declare const Items$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Items$ { /** @deprecated use `Items$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Items$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Items$Outbound` instead. */ type Outbound = Items$Outbound; } export declare function itemsToJSON(items: Items): string; export declare function itemsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=items.d.ts.map