import { StringHack, Globals } from "./index"; /** * The **`letter-spacing`** CSS property sets the spacing behavior between text characters. * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/letter-spacing */ export type LetterSpacingProperty = Globals | TLength | "normal";