/** @since 5.0 */
export default abstract class VertexRemoveEvent {
  /**
   * Set to true when `preventDefault()` is called.
   *
   * @default false
   * @since 5.0
   */
  defaultPrevented: boolean;
  /**
   * The type of the event.
   *
   * @since 5.0
   */
  readonly type: "vertex-remove";
  /**
   * Index of the vertex removed from the vertices array.
   *
   * @since 5.0
   */
  vertexIndex: number;
  /**
   * Two-dimensional array of numbers representing the coordinates of each vertex
   * that make the geometry.
   *
   * @since 5.0
   */
  vertices: number[][];
  /**
   * Prevents event propagation bubbling up the event chain.
   *
   * @since 5.0
   */
  preventDefault(): void;
}