import { FC, ReactNode, ElementType } from 'react'; import { AppBarProps, TabsProps, BoxProps, ToolbarProps, TypographyProps } from '@mui/material'; export interface SecondaryNavigationProps extends Omit { /** * Headline */ title?: ReactNode; /** * Wrap the navigation into container * @default false */ inContainer?: boolean; /** * ActionButtons on the right side */ buttons?: ReactNode; /** * Properties applied to toolbar container */ toolbarProps?: ToolbarProps; /** * Properties applied to title */ titleProps?: TypographyProps; /** * Properties applied to content wrapper */ contentProps?: TabsProps; /** * Properties applied to button wrapper */ buttonsProps?: BoxProps; } /** * Additional navigation intended to be shown bellow the Header */ export declare const SecondaryNavigation: FC;