import { ReactNode } from 'react'; export interface ToolbarProps extends React.HTMLAttributes { children: ReactNode; vibrant?: boolean; docked?: boolean; } /** Expressive Toolbar — a pill-shaped floating action cluster. */ export declare function Toolbar({ children, vibrant, docked, className, style, ...rest }: ToolbarProps): import("react/jsx-runtime").JSX.Element;