import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AddCollectionItemsError } from "./addcollectionitemserror.js"; import { Collection } from "./collection.js"; export type AddCollectionItemsResponse = { collection?: Collection | undefined; error?: AddCollectionItemsError | undefined; }; /** @internal */ export declare const AddCollectionItemsResponse$inboundSchema: z.ZodType; export declare function addCollectionItemsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=addcollectionitemsresponse.d.ts.map