import { OnOffButton, OnOffButtonView } from "./on_off_button"; import type { ActionTool } from "./actions/action_tool"; import type * as p from "../../core/properties"; export declare class ClickButtonView extends OnOffButtonView { model: ClickButton; tap(): void; } export declare namespace ClickButton { type Attrs = p.AttrsOf; type Props = OnOffButton.Props & { tool: p.Property; }; } export interface ClickButton extends ClickButton.Attrs { tool: ActionTool; } export declare class ClickButton extends OnOffButton { properties: ClickButton.Props; __view_type__: ClickButtonView; constructor(attrs?: Partial); } //# sourceMappingURL=click_button.d.ts.map