import type { ToolbarBaseProps, ToolbarItemData } from "./types.js"; import "./ToolbarButton.css"; export type ToolbarButtonProps = ToolbarBaseProps & ToolbarItemData; export type ToolbarButtonViewProps = Pick, 'icon' | 'title' | 'hint' | 'hotkey' | 'hintWhenDisabled'> & { active: boolean; enabled: boolean; onClick: () => void; className?: string; }; export declare const ToolbarButtonView: import("react").ForwardRefExoticComponent, "title" | "icon" | "hint" | "hotkey" | "hintWhenDisabled"> & { active: boolean; enabled: boolean; onClick: () => void; className?: string; } & import("react").RefAttributes>; export declare function ToolbarButton(props: ToolbarButtonProps): JSX.Element;