import { z } from 'zod'; import { Level } from './types.gen'; /** Steps a typography level down by one rank; bottoms out at the smallest. */ export declare const downLevel: (level: Level) => Level; export declare const weightZ: z.ZodUnion]>; /** Weight sets the weight of the text. */ export type Weight = z.infer; export declare const specZ: z.ZodObject<{ size: z.ZodNumber; weight: z.ZodUnion; lineHeight: z.ZodNumber; textTransform: z.ZodOptional; }, z.core.$strip>; /** Defines a particular typography style. */ export type Spec = z.infer; //# sourceMappingURL=types.d.ts.map