import type { IconType } from 'react-icons'; type ToolbarButton = { icon: IconType; onClick?: VoidFunction; }; type GlassToolbarProps = { groupedButtons?: ToolbarButton[]; floatingButton?: ToolbarButton; }; export declare const GlassToolbar: ({ groupedButtons, floatingButton, }?: GlassToolbarProps) => import("react/jsx-runtime").JSX.Element; export {};