import { ButtonHTMLAttributes, HTMLProps } from "react";
import { ButtonProps } from "./Button/Button.js";
export type ToolbarWrapperProps = {
shouldShowContent?: boolean;
isVertical?: boolean;
} & HTMLProps;
export type ToolbarDividerProps = {
horizontal?: boolean;
} & HTMLProps;
export type ToolbarButtonProps = ButtonHTMLAttributes & {
active?: boolean;
activeClassname?: string;
tooltip?: string;
tooltipShortcut?: string[];
buttonSize?: ButtonProps["buttonSize"];
variant?: ButtonProps["variant"];
};
export declare const Toolbar: {
Wrapper: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
Divider: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
Button: import("react").ForwardRefExoticComponent & {
active?: boolean;
activeClassname?: string;
tooltip?: string;
tooltipShortcut?: string[];
buttonSize?: ButtonProps["buttonSize"];
variant?: ButtonProps["variant"];
} & import("react").RefAttributes>;
};
//# sourceMappingURL=Toolbar.d.ts.map