export default class ScrollBarData extends RangeData { constructor(displayObject: any, role: any, domIdPrefix: any); /** * Amount to increment or decrement the value by when the arrow keys are pressed * @access public */ increment: number; /** * Sets the orientation * @access public * @param {String} str - "horizontal" for a horizontal slider, "vertical" for a vertical scrollbar */ set orientation(arg: string); /** * Retrieves the orientation * @access public * @returns {String} str "horizontal" for a horizontal slider, * "vertical" for a vertical scrollbar */ get orientation(): string; /** * @inheritdoc */ _onKeyDown(evt: any): void; } import RangeData from "./RangeData";