import { Type } from "igniteui-react-core";
/**
 * Enum representing a unit of time.
 */
export declare enum TimeAxisIntervalType {
    /**
     * Ticks are ten millionths of seconds.
     */
    Ticks = 0,
    /**
     * Milliseconds.
     */
    Milliseconds = 1,
    /**
     * Seconds.
     */
    Seconds = 2,
    /**
     * Minutes.
     */
    Minutes = 3,
    /**
     * Hours.
     */
    Hours = 4,
    /**
     * Days.
     */
    Days = 5,
    /**
     * Weeks.
     */
    Weeks = 6,
    /**
     * Months.
     */
    Months = 7,
    /**
     * Years.
     */
    Years = 8
}
/**
 * @hidden
 */
export declare let TimeAxisIntervalType_$type: Type;
