import { Globals } from "./index"; /** * The **`-ms-hyphenate-limit-lines`** CSS property is a Microsoft extension specifying the maximum number of consecutive lines in an element that may be ended with a hyphenated word. * * **Initial value**: `no-limit` */ export type MsHyphenateLimitLinesProperty = Globals | "no-limit" | number;