import "./MenuBar.css"; export interface MenuBarProps { /** If provided, a Save button is rendered. */ onSaveButton?: () => void; /** Label for the Save button. Defaults to `"Save"`. */ saveButtonLabel?: string; /** If provided, a Cancel button is rendered. */ onCancelButton?: () => void; /** Label for the Cancel button. Defaults to `"Cancel"`. */ cancelButtonLabel?: string; /** * When `false`, the Simple/Full preview mode toggle is hidden entirely. * Defaults to showing the toggle. */ showPreviewModeToggle?: boolean; } declare const MenuBar: (props: MenuBarProps) => import("react").JSX.Element; export default MenuBar;