import { FC, ElementType } from 'react'; import { BoxProps, ClickAwayListenerProps, ContainerProps, PortalProps, BackdropProps, CollapseProps } from '@mui/material'; import { HeaderNavigationLinkProps } from './HeaderNavigationLink'; export interface HeaderNavigationHeroProps extends HeaderNavigationLinkProps { /** * Wrap the content into container * @default false */ inContainer?: boolean; /** * Controls appearance of backdrop when content opens * @default false */ disableBackdrop?: boolean; /** * Props applied to ClickAwayListener */ clickAwayListenerProps?: Omit; /** * Props applied to main wrapper of content */ contentProps?: BoxProps; /** * Props applied to main wrapper before collapsible */ wrapperProps?: BoxProps; /** * Props applied to Container if inContainer property is provided */ containerProps?: ContainerProps; /** * Props applied to Collapse component */ collapseProp?: CollapseProps; /** * Props applied to Portal if disableBackdrop property is not provided */ portalProps?: PortalProps; /** * Props applied to Backdrop if disableBackdrop property is not provided */ backdropProps?: BackdropProps; } /** * HeaderNavigationLink with the integration of the complex hero menu */ export declare const HeaderNavigationHero: FC;