import { z } from 'zod';
export declare const Unit: z.ZodEnum<["inches", "cm"]>;
export type Unit = z.infer<typeof Unit>;
export declare const MeasurementSystem: z.ZodEnum<["imperial", "metric"]>;
export type MeasurementSystem = z.infer<typeof MeasurementSystem>;
