import { Globals } from "./index"; /** * The **`box-align`** CSS property specifies how an element aligns its contents across its layout in a perpendicular direction. The effect of the property is only visible if there is extra space in the box. * * **Initial value**: `stretch` * * @deprecated */ export type BoxAlignProperty = Globals | "baseline" | "center" | "end" | "start" | "stretch";