import { Type } from "igniteui-webcomponents-core"; /** * Constants which determine the placement of an axis' major * and minor tick marks. */ export declare enum TickMark { /** * The tick marks cross the axis line. */ Cross = 4, /** * The tick marks appear on the side of the axis line * closest to the inside of the plot area. */ Inside = 2, /** * Tick marks are not displayed. */ None = 4142, /** * The tick marks appear on the side of the axis line * closest to the outside of the plot area. */ Outside = 3 } /** * @hidden */ export declare let TickMark_$type: Type;