import { z } from 'zod'; export declare const NOTATIONS: readonly ["standard", "scientific", "engineering"]; export declare const notationZ: z.ZodEnum<{ standard: "standard"; scientific: "scientific"; engineering: "engineering"; }>; export type Notation = z.infer; //# sourceMappingURL=types.gen.d.ts.map