/** * Scrollbars are a [Range]-based [Control], that display a draggable area (the size of the page). Horizontal ([HScrollBar]) and Vertical ([VScrollBar]) versions are available. * */ declare class ScrollBar extends Range { /** * Scrollbars are a [Range]-based [Control], that display a draggable area (the size of the page). Horizontal ([HScrollBar]) and Vertical ([VScrollBar]) versions are available. * */ new(): ScrollBar; static "new"(): ScrollBar /** Overrides the step used when clicking increment and decrement buttons or when using arrow keys when the [ScrollBar] is focused. */ custom_step: float; connect>(signal: T, method: SignalFunction): number; /** * Emitted when the scrollbar is being scrolled. * */ $scrolling: Signal<() => void> }