import { Globals } from "./index"; /** * The **`scroll-behavior`** CSS property sets the behavior for a scrolling box when scrolling is triggered by the navigation or CSSOM scrolling APIs. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | **61** | **36** | No | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-behavior */ export type ScrollBehaviorProperty = Globals | "auto" | "smooth";