import { z } from 'zod'; /** * Represents an entry in a package bundle, containing version and descriptive information. */ export declare const BundleEntrySchema: z.ZodObject<{ name: z.ZodString; versionName: z.ZodString; versionNumber: z.ZodString; versionDescription: z.ZodOptional; }, z.core.$strip>; export type BundleEntry = z.infer;