import { Pixel } from "../types";
import { ScrollDirection } from "../types/scroll_direction";
export declare class ScrollBar {
private direction;
el: HTMLElement;
constructor(el: HTMLElement | null, direction: ScrollDirection);
get scroll(): Pixel;
set scroll(value: Pixel);
}