import { Type } from "igniteui-react-core";
/**
 * Enum representing a unit of time.
 */
export declare enum TimeAxisLabellingMode {
    /**
     * LabellingMode is decided automatically.
     */
    Auto = 0,
    /**
     * Labels are presented in a uniform format based on visible interval.
     */
    Normal = 1,
    /**
     * Labels are shortened by eliminating repeated elements compared to prior values.
     */
    Compressed = 2
}
/**
 * @hidden
 */
export declare let TimeAxisLabellingMode_$type: Type;
