import { type HTMLAttributes } from 'react';
export interface Props extends HTMLAttributes<HTMLDivElement> {
    className?: string;
    /** Determine flex-alignment of child buttons. Needed for overflow behaviour. */
    alignment?: 'left' | 'right';
}
/**
 * A container for multiple ToolbarButtons. Provides automatic overflow behaviour when the buttons no longer fit in the container.
 *
 * https://developers.grafana.com/ui/latest/index.html?path=/docs/navigation-toolbarbuttonrow--docs
 */
export declare const ToolbarButtonRow: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<HTMLDivElement>>;
