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