import { Keymap } from '@textbus/core';
export interface UIButtonConfig {
    iconClasses?: string[];
    label?: string;
    tooltip?: string;
    onClick(): void;
    keymap?: Keymap;
}
export interface UIButton {
    elementRef: HTMLElement;
    disabled: boolean;
    highlight: boolean;
}
export declare function createButton(config: UIButtonConfig): UIButton;
