/** * @author Timur Kuzhagaliyev * @copyright 2020 * @license MIT */ import React from 'react'; import { Nullable } from 'tsdef'; import { ChonkyIconName } from '../../types/icons.types'; export interface ToolbarButtonProps { className?: string; text: string; tooltip?: string; active?: boolean; icon?: Nullable; iconOnly?: boolean; onClick?: (event: React.MouseEvent) => void; disabled?: boolean; dropdown?: boolean; } export declare const ToolbarButton: React.FC; export interface SmartToolbarButtonProps { fileActionId: string; } export declare const SmartToolbarButton: React.FC;