import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { Collection, Collection$Outbound } from "./collection.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type CollectionWithOwnedItems = { collection: Collection; ownedItems: number; }; /** @internal */ export declare const CollectionWithOwnedItems$inboundSchema: z.ZodType; /** @internal */ export type CollectionWithOwnedItems$Outbound = { collection: Collection$Outbound; ownedItems: number; }; /** @internal */ export declare const CollectionWithOwnedItems$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 CollectionWithOwnedItems$ { /** @deprecated use `CollectionWithOwnedItems$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CollectionWithOwnedItems$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CollectionWithOwnedItems$Outbound` instead. */ type Outbound = CollectionWithOwnedItems$Outbound; } export declare function collectionWithOwnedItemsToJSON(collectionWithOwnedItems: CollectionWithOwnedItems): string; export declare function collectionWithOwnedItemsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=collectionwithowneditems.d.ts.map