import { Globals } from "./index"; /** * The **`box-lines`** CSS property determines whether the box may have a single or multiple lines (rows for horizontally oriented boxes, columns for vertically oriented boxes). * * **Initial value**: `single` * * @deprecated */ export type BoxLinesProperty = Globals | "multiple" | "single";