export type FontStyle = "normal" | "italic"; export type FontWeight = | number | "thin" | "light" | "regular" | "normal" | "medium" | "bold" | "black"; export type Align = "left" | "center" | "right"; export type Baseline = "top" | "middle" | "bottom" | "alphabetic" | "baseline";