import * as z from "zod"; import { CatalogEntryV2, CatalogEntryV2$Outbound } from "./catalogentryv2.js"; import { CatalogTypeV2, CatalogTypeV2$Outbound } from "./catalogtypev2.js"; import { PaginationMetaResult, PaginationMetaResult$Outbound } from "./paginationmetaresult.js"; export type ListEntriesResponseBody = { catalogEntries: Array; catalogType: CatalogTypeV2; paginationMeta: PaginationMetaResult; }; /** @internal */ export declare const ListEntriesResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ListEntriesResponseBody$Outbound = { catalog_entries: Array; catalog_type: CatalogTypeV2$Outbound; pagination_meta: PaginationMetaResult$Outbound; }; /** @internal */ export declare const ListEntriesResponseBody$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 ListEntriesResponseBody$ { /** @deprecated use `ListEntriesResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListEntriesResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListEntriesResponseBody$Outbound` instead. */ type Outbound = ListEntriesResponseBody$Outbound; } //# sourceMappingURL=listentriesresponsebody.d.ts.map