export default class DygraphInteraction {
    static maybeTreatMouseOpAsClick: (event: any, g: any, context: any) => void;
    private nonInteractiveModel_;
    static treatMouseOpAsClick: (g: any, event: any, context: any) => void;
    static startPan: (event: any, g: any, context: any) => void;
    static movePan: (event: any, g: any, context: any) => void;
    static endPan: (event: any, g: any, context: any) => void;
    static dragIsPanInteractionModel: {
        mousedown: (event: any, g: any, context: any) => void;
        mousemove: (event: any, g: any, context: any) => void;
        mouseup: (event: any, g: any, context: any) => void;
    };
}
