import type * as p from "../../core/properties"; import { ButtonType } from "../../core/enums"; import type { StyleSheetLike } from "../../core/dom"; import type { ViewOf, View } from "../../core/build_views"; import { Control, ControlView } from "./control"; import { DOMNode } from "../dom/dom_node"; import { Icon } from "../ui/icons/icon"; export declare abstract class AbstractButtonView extends ControlView { model: AbstractButton; protected label_view?: ViewOf; protected icon_view?: ViewOf; button_el: HTMLButtonElement; protected group_el: HTMLElement; controls(): Generator; children_views(): View[]; lazy_initialize(): Promise; _rebuild_label(): Promise; _rebuild_icon(): Promise; connect_signals(): void; remove(): void; stylesheets(): StyleSheetLike[]; _render_button(...children: (string | ChildNode | null | undefined)[]): HTMLButtonElement; render(): void; click(): void; } export declare namespace AbstractButton { type Attrs = p.AttrsOf; type Props = Control.Props & { label: p.Property; icon: p.Property; button_type: p.Property; }; } export interface AbstractButton extends AbstractButton.Attrs { } export declare abstract class AbstractButton extends Control { properties: AbstractButton.Props; __view_type__: AbstractButtonView; constructor(attrs?: Partial); } //# sourceMappingURL=abstract_button.d.ts.map