import { HTMLWidget, Widget } from "@hpcc-js/common";
import "../src/Toolbar.css";
export declare class Toolbar extends HTMLWidget {
constructor();
enter(domNode: any, element: any): void;
update(domNode: any, element: any): void;
render(callback?: (w: Widget) => void): this;
exit(domNode: any, element: any): void;
}
export interface Toolbar {
title(): string;
title(_: string): this;
fontSize(): number;
fontSize(_: number): this;
fontSize_exists(): boolean;
fontColor(): string;
fontColor(_: string): this;
fontColor_exists(): boolean;
fontFamily(): string;
fontFamily(_: string): this;
fontFamily_exists(): boolean;
fontBold(): boolean;
fontBold(_: boolean): this;
fontBold_exists(): boolean;
backgroundColor(): string;
backgroundColor(_: string): this;
backgroundColor_exists(): boolean;
responsive(): boolean;
responsive(_: boolean): this;
widgets(): any[];
widgets(_: any[]): this;
widgetClasses(): string[];
widgetClasses(_: string[]): this;
}