import * as z from "zod"; export type CatalogEntryReferenceV2 = { /** * When this entry was archived */ archivedAt?: Date | undefined; /** * ID of this catalog entry */ catalogEntryId: string; /** * The name of this entry */ catalogEntryName: string; /** * ID of this catalog type */ catalogTypeId: string; }; /** @internal */ export declare const CatalogEntryReferenceV2$inboundSchema: z.ZodType; /** @internal */ export type CatalogEntryReferenceV2$Outbound = { archived_at?: string | undefined; catalog_entry_id: string; catalog_entry_name: string; catalog_type_id: string; }; /** @internal */ export declare const CatalogEntryReferenceV2$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 CatalogEntryReferenceV2$ { /** @deprecated use `CatalogEntryReferenceV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CatalogEntryReferenceV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CatalogEntryReferenceV2$Outbound` instead. */ type Outbound = CatalogEntryReferenceV2$Outbound; } //# sourceMappingURL=catalogentryreferencev2.d.ts.map