import { Globals } from "./index"; /** * The **`-moz-box-pack`** and **`-webkit-box-pack`** CSS properties specify how a `-moz-box` or `-webkit-box` packs its contents in the direction of its layout. The effect of this is only visible if there is extra space in the box. * * **Initial value**: `start` * * @deprecated */ export type BoxPackProperty = Globals | "center" | "end" | "justify" | "start";