import { Globals } from "./index"; /** * The **`box-orient`** CSS property specifies whether an element lays out its contents horizontally or vertically. * * **Initial value**: `inline-axis` (`horizontal` in XUL) * * @deprecated */ export type BoxOrientProperty = Globals | "block-axis" | "horizontal" | "inherit" | "inline-axis" | "vertical";