import { Globals } from "./index"; /** * The `scrollbar-width` property allows the author to set the maximum thickness of an element’s scrollbars when they are shown. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | No | **64** | No | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-width */ export type ScrollbarWidthProperty = Globals | "auto" | "none" | "thin";