/** * MenuBar * * Blue and white "menu bar" at the top of our dashboards. */ import { BlockProps } from '../../core/types'; import './MenuBar.scss'; export type MenuBarProps = BlockProps & { drawer?: boolean; }; export default function MenuBar({ children, className, drawer, style }: MenuBarProps): import("react/jsx-runtime").JSX.Element; export declare const TopRibbon: ({ className, ...props }: MenuBarProps) => import("react/jsx-runtime").JSX.Element;