import { InteractActionsType } from '../../../../../enums/eventEnum';
export declare enum ComponentInteractEventEnum {
    DATE = "date",
    DATE_TIME = "datetime",
    DATE_RANGE = "daterange",
    DATE_TIME_RANGE = "datetimerange",
    MONTH = "month",
    MONTH_RANGE = "monthrange",
    YEAR = "year",
    YEAR_RANGE = "yearrange",
    QUARTER = "quarter",
    QUARTER_RANGE = "quarterrange"
}
export declare enum ComponentInteractParamsEnum {
    DATE = "date",
    DATE_START = "dateStart",
    DATE_END = "dateEnd",
    DATE_RANGE = "daterange"
}
export declare enum DefaultTypeEnum {
    NONE = "none",
    STATIC = "static",
    DYNAMIC = "dynamic"
}
export declare enum DifferUnitEnum {
    DAY = "d",
    WEEK = "w",
    MONTH = "M",
    QUARTER = "Q",
    YEAR = "y",
    HOUR = "h",
    MINUTE = "m",
    SECOND = "s",
    MILLISECOND = "ms"
}
export declare const DifferUnitObject: {
    d: string;
    w: string;
    M: string;
    Q: string;
    y: string;
    h: string;
    m: string;
    s: string;
    ms: string;
};
export declare const interactActions: InteractActionsType[];
