import { Globals } from "./index"; /** * The **`scroll-snap-type-x`** CSS property defines how strictly snap points are enforced on the horizontal axis of the scroll container in case there is one. * * **Initial value**: `none` * * @deprecated */ export type ScrollSnapTypeXProperty = Globals | "mandatory" | "none" | "proximity";