import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CatalogEntry, CatalogEntry$Outbound } from "./catalogentry.js"; export type CatalogListResponse = { object: "list"; currency: string | null; data: Array; }; /** @internal */ export declare const CatalogListResponse$inboundSchema: z.ZodType; /** @internal */ export type CatalogListResponse$Outbound = { object: "list"; currency: string | null; data: Array; }; /** @internal */ export declare const CatalogListResponse$outboundSchema: z.ZodType; export declare function catalogListResponseToJSON(catalogListResponse: CatalogListResponse): string; export declare function catalogListResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cataloglistresponse.d.ts.map