import { Globals } from "./index"; /** * The **`box-direction`** CSS property specifies whether a box lays out its contents normally (from the top or left edge), or in reverse (from the bottom or right edge). * * **Initial value**: `normal` * * @deprecated */ export type BoxDirectionProperty = Globals | "inherit" | "normal" | "reverse";