export default class SelectData extends GroupData { /** * Sets the orientation * @access public * @param {String} str - "horizontal" for a horizontal slider, "vertical" for a vertical slider */ set orientation(arg: string); /** * Retrieves the orientation * @access public * @returns {String} str "horizontal" for a horizontal slider, "vertical" for a vertical slider */ get orientation(): string; } import GroupData from "./GroupData";