import { Globals } from "./index"; /** * **`-moz-stack-sizing`** is an extended CSS property. Normally, a `stack` will change its size so that all of its child elements are completely visible. For example, moving a child of the stack far to the right will widen the stack so the child remains visible. * * **Initial value**: `stretch-to-fit` */ export type MozStackSizingProperty = Globals | "ignore" | "stretch-to-fit";