export declare const SLIDER_PLAY = "SLIDER_PLAY";
export declare const SLIDER_PAUSE = "SLIDER_PAUSE";
export declare const CONTROL_NEXT = "CONTROL_NEXT";
export declare const CONTROL_PREV = "CONTROL_PREV";
export declare const RANGE_CHANGE = "RANGE_CHANGE";
export declare const SPEED_CHANGE = "SPEED_CHANGE";
export declare const BACKGROUND_STYLE: {
    fill: string;
    opacity: number;
};
export declare const SIMPLE_BACKGROUND_STYLE: {
    fill: string;
    opacity: number;
    radius: number;
};
export declare const FOREGROUND_STYLE: {
    fill: string;
    opacity: number;
    cursor: string;
};
export declare const TREND_SLIDER_HEIHGT = 24;
export declare const TREND_HANDLER_STYLE: {
    width: number;
    height: number;
    fill: string;
    stroke: string;
    opacity: number;
    cursor: string;
    highLightFill: string;
};
export declare const SIMPLE_HANDLE_STYLE: {
    fill: string;
    stroke: string;
    radius: number;
    opacity: number;
    lineWidth: number;
    cursor: string;
};
export declare const TEXT_STYLE: {
    textBaseline: string;
    fill: string;
    opacity: number;
    fontSize: number;
};
export declare const TICK_LABEL_STYLE: {
    fill: string;
    opacity: number;
    fontSize: number;
    width: number;
};
export declare const TICK_LINE_STYLE: {
    width: number;
    height: number;
    fill: string;
};
export declare const PROGRESS_TICK: {
    gap: number;
    tickBoxHeight: number;
};
export declare const PROGRESS_TICK_LINE_STYLE: {
    height: number;
    width: number;
    fill: string;
};
export declare const PROGRESS_TICK_TEXT_STYLE: {
    fill: string;
    fontSize: number;
    width: number;
};
export declare const PROGRESS_TICK_SELECTED_STYLE: {
    fill: string;
};
export declare const PROGRESS_TICK_UNSELECTED_STYLE: {
    fill: string;
};
export declare const SLIDER_START = 0.1;
export declare const SLIDER_END = 0.9;
export declare const DEFAULT_CONTROLLER_CONFIG: {
    speed: number;
    contentWidth: number;
    height: number;
    fill: string;
    stroke: string;
    hideTimeTypeController: boolean;
    preBtnStyle: {
        fill: string;
    };
    nextBtnStyle: {
        fill: string;
    };
    playBtnStyle: {
        fill: string;
    };
};
