import { Globals } from "./index"; /** * The **`-moz-orient`** CSS property specifies the orientation of the element to which it's applied. * * **Initial value**: `inline` */ export type MozOrientProperty = Globals | "block" | "horizontal" | "inline" | "vertical";