/// <reference types="react" />
import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface ToolbarProps extends StyleProps, React.PropsWithChildren<any>, IdProps {
    borderless?: boolean;
    roundedCorners?: boolean;
}
export declare const Toolbar: ({ id, children, style, className, borderless, roundedCorners }: ToolbarProps) => import("react/jsx-runtime").JSX.Element;
