import type MapSurroundInfoBase from "./MapSurroundInfoBase.js";
import type { MapSurroundInfoBaseProperties } from "./MapSurroundInfoBase.js";

export interface MapSurroundInfoNorthArrowProperties extends MapSurroundInfoBaseProperties {
  /**
   * The type of MapSurroundInfo.
   *
   * @default "cim-marker-north-arrow"
   */
  type?: "cim-marker-north-arrow";
}

/** The `MapSurroundInfoNorthArrow` class defines a map surround north arrow for printing */
export default class MapSurroundInfoNorthArrow extends MapSurroundInfoBase {
  constructor(properties?: MapSurroundInfoNorthArrowProperties);
  /**
   * The type of MapSurroundInfo.
   *
   * @default "cim-marker-north-arrow"
   */
  type: "cim-marker-north-arrow";
}