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"; export type ListCollectionsResponseV1 = { collections: Array | null; nextPageToken: string; }; /** @internal */ export declare const ListCollectionsResponseV1$inboundSchema: z.ZodType; export declare function listCollectionsResponseV1FromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listcollectionsresponsev1.d.ts.map