export declare const ChartEvent: {
    BEFORE_RENDER: string;
    AFTER_RENDER: string;
    BEFORE_PAINT: string;
    AFTER_PAINT: string;
    BEFORE_CHANGE_DATA: string;
    AFTER_CHANGE_DATA: string;
    BEFORE_CLEAR: string;
    AFTER_CLEAR: string;
    BEFORE_DESTROY: string;
    AFTER_DESTROY: string;
    BEFORE_CHANGE_SIZE: string;
    AFTER_CHANGE_SIZE: string;
    POINTER_TAP: string;
    POINTER_DOWN: string;
    POINTER_UP: string;
    POINTER_OVER: string;
    POINTER_OUT: string;
    POINTER_MOVE: string;
    POINTER_ENTER: string;
    POINTER_LEAVE: string;
    POINTER_UPOUTSIDE: string;
    DRAG_START: string;
    DRAG: string;
    DRAG_END: string;
    DRAG_ENTER: string;
    DRAG_LEAVE: string;
    DRAG_OVER: string;
    DROP: string;
    CLICK: string;
    DBLCLICK: string;
};
