import type Widget from "../../../Widget.js";
import type { WidgetProperties } from "../../../Widget.js";

/** @since 5.0 */
export interface ClassicViewProperties extends WidgetProperties {}

/**
 * The legend has a portrait orientation. The user can scroll vertically when many elements are included in the legend's content.
 *
 * @see [Legend.style](https://developers.arcgis.com/javascript/latest/references/core/widgets/Legend/#style)
 * @since 5.0
 */
export default class ClassicView extends Widget {
  constructor(properties?: ClassicViewProperties);
  /**
   * The type of style. For Classic this value is always `classic`.
   *
   * @since 5.0
   */
  get type(): "classic";
}