import * as z from 'zod'; /** * Represents the type of build, stock or extended. */ export declare const BuildTypeSchema: z.ZodEnum<{ stock: "stock"; extended: "extended"; }>; /** * Represents the type of build. * @typedef {'stock' | 'extended'} BuildType */ export type BuildType = z.infer;