import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Collection } from "./collection.js"; import { CollectionError } from "./collectionerror.js"; export type GetCollectionResponse = { collection?: Collection | undefined; rootCollection?: Collection | undefined; /** * An opaque token that represents this particular Collection. To be used for `/feedback` reporting. */ trackingToken?: string | undefined; error?: CollectionError | undefined; }; /** @internal */ export declare const GetCollectionResponse$inboundSchema: z.ZodType; export declare function getCollectionResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getcollectionresponse.d.ts.map