import { StringHack, Globals, Position } from "./index"; /** * The **`scroll-snap-coordinate`** CSS property defines the x and y coordinate positions within an element that will align with its nearest ancestor scroll container's `scroll-snap-destination` for each respective axis. * * **Initial value**: `none` * * @deprecated */ export type ScrollSnapCoordinateProperty = Globals | Position | "none" | StringHack;