import { PlotActionTool, PlotActionToolView } from "./plot_action_tool"; import type { IconLike } from "../../common/kinds"; import { PanDirection } from "../../../core/enums"; import type * as p from "../../../core/properties"; export declare class ClickPanToolView extends PlotActionToolView { model: ClickPanTool; doit(): void; } export declare namespace ClickPanTool { type Attrs = p.AttrsOf; type Props = PlotActionTool.Props & { direction: p.Property; factor: p.Property; }; } export interface ClickPanTool extends ClickPanTool.Attrs { } export declare class ClickPanTool extends PlotActionTool { properties: ClickPanTool.Props; __view_type__: ClickPanToolView; constructor(attrs?: Partial); tool_name: string; get tooltip(): string; get computed_icon(): IconLike; } //# sourceMappingURL=click_pan_tool.d.ts.map