import * as React from 'react';
import { type BasicButtonProps } from '../../2-inline-block/BasicButton';
import { type BasicTooltipProps } from '../BasicTooltip';
export interface ToolbarItemProps extends BasicButtonProps {
    narrow?: boolean;
    small?: boolean;
    outline?: boolean;
    autowidth?: boolean;
    children?: React.ReactNode;
    tooltip?: BasicTooltipProps;
}
export declare const ToolbarItem: React.FC<ToolbarItemProps>;
