import { default as React } from 'react'; import { SxProps } from '@mui/material'; type Props = { hasDrawer?: boolean; drawerCollapsed?: boolean; content?: React.ReactNode; handleDrawerToggle: () => void; sxProps?: SxProps; }; declare const DashboardLayoutHeader: React.FC; export default DashboardLayoutHeader;