import type CSVLayer from "../../layers/CSVLayer.js";
import type FeatureLikeLayerView from "./FeatureLikeLayerView.js";

/**
 * Represents the [LayerView](https://developers.arcgis.com/javascript/latest/references/core/views/layers/LayerView/) of a [CSVLayer](https://developers.arcgis.com/javascript/latest/references/core/layers/CSVLayer/)
 * after it has been added to a [Map](https://developers.arcgis.com/javascript/latest/references/core/Map/) in either a [MapView](https://developers.arcgis.com/javascript/latest/references/core/views/MapView/) or
 * [SceneView](https://developers.arcgis.com/javascript/latest/references/core/views/SceneView/).
 *
 * The CSVLayerView is responsible for rendering a [CSVLayer's](https://developers.arcgis.com/javascript/latest/references/core/layers/CSVLayer/)
 * features as [graphics](https://developers.arcgis.com/javascript/latest/references/core/Graphic/) in the [View](https://developers.arcgis.com/javascript/latest/references/core/views/View/).
 *
 * @since 4.11
 * @see [CSVLayer](https://developers.arcgis.com/javascript/latest/references/core/layers/CSVLayer/)
 */
export default abstract class CSVLayerView extends FeatureLikeLayerView {
  /** The layer being viewed. */
  get layer(): CSVLayer;
}