import { ReactNode } from 'react'; import { BoxProps } from '@mui/material/Box'; export interface ToolbarProps extends BoxProps { isMaximized?: boolean; isHovered?: boolean; rightActions?: ReactNode; leftActions?: ReactNode; title: string; icon?: string; }