import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { CollectionWithOwnedItems, CollectionWithOwnedItems$Outbound } from "./collectionwithowneditems.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type CollectionsWithOwnedItems = { collections: Array; /** * Continuation token to paginate result */ continuation?: string | undefined; }; /** @internal */ export declare const CollectionsWithOwnedItems$inboundSchema: z.ZodType; /** @internal */ export type CollectionsWithOwnedItems$Outbound = { collections: Array; continuation?: string | undefined; }; /** @internal */ export declare const CollectionsWithOwnedItems$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 CollectionsWithOwnedItems$ { /** @deprecated use `CollectionsWithOwnedItems$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CollectionsWithOwnedItems$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CollectionsWithOwnedItems$Outbound` instead. */ type Outbound = CollectionsWithOwnedItems$Outbound; } export declare function collectionsWithOwnedItemsToJSON(collectionsWithOwnedItems: CollectionsWithOwnedItems): string; export declare function collectionsWithOwnedItemsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=collectionswithowneditems.d.ts.map