import './style.css'; import { ITooltipProps } from '../../../../component'; import { IProp } from '../index'; declare const getConfigVal: (val: Array) => undefined; interface IButtonForToolbarProps extends IProp { getRef?: (node: HTMLElement | null) => any; className?: string; tooltipProps?: Partial; buttonProps?: any; } declare const ButtonForToolbar: (props: IButtonForToolbarProps) => JSX.Element; export { ButtonForToolbar, getConfigVal };