import { ZoomBaseTool, ZoomBaseToolView } from "./zoom_base_tool"; import type * as p from "../../../core/properties"; export declare class ZoomOutToolView extends ZoomBaseToolView { model: ZoomBaseTool; get factor(): number; } export declare namespace ZoomOutTool { type Attrs = p.AttrsOf; type Props = ZoomBaseTool.Props & { maintain_focus: p.Property; }; } export interface ZoomOutTool extends ZoomBaseTool.Attrs { } export declare class ZoomOutTool extends ZoomBaseTool { properties: ZoomOutTool.Props; __view_type__: ZoomBaseToolView; maintain_focus: boolean; constructor(attrs?: Partial); tool_name: string; tool_icon: string; } //# sourceMappingURL=zoom_out_tool.d.ts.map