declare const unitsOfWeight: readonly ["gr", "lb", "oz"]; declare const unitsOfWeightNames: { readonly gr: "Grams"; readonly lb: "Pounds"; readonly oz: "Ounces"; }; export type UnitOfWeight = (typeof unitsOfWeight)[number]; type UnitOfWeightLabel = (typeof unitsOfWeightNames)[keyof typeof unitsOfWeightNames]; interface UnitOfWeightForSelect { label: UnitOfWeightLabel; value: UnitOfWeight; } /** * Get a units of weight list suitable for select options usage * @returns an array of objects with `value` and `label` props */ export declare const getUnitsOfWeightForSelect: () => UnitOfWeightForSelect[]; export declare function getUnitOfWeightName(unitOfWeight: UnitOfWeight): UnitOfWeightLabel; export {};