import React from 'react'; import type { AppBarProps } from '@mui/material/AppBar'; import type { SxProps } from '@mui/material/styles'; export type labelMenu = (open: boolean) => string; export interface HeaderProps { labelMenu?: labelMenu; noDrawerToggle?: boolean; toolbarVariant?: 'regular' | 'dense'; toolbarSx?: SxProps; toolbarStyle?: React.CSSProperties; appBarVariant?: AppBarProps['variant']; appBarPosition?: AppBarProps['position']; appBarSquare?: boolean; disableColorOnDark?: boolean; appBarSx?: SxProps; e2e?: string; } export declare const Header: React.ComponentType>;