import { FC, ReactNode, ElementType } from 'react'; import { TabProps } from '@mui/material'; export interface SecondaryNavigationItemProps extends Omit, 'children'> { /** * Displayed navigation text, can be provided as children as well */ label?: ReactNode; /** * Displayed navigation text */ children?: ReactNode; } /** * Component to render styled button in the header */ export declare const SecondaryNavigationItem: FC;