import { ElementType, FC, ReactNode } from 'react'; import { ButtonBaseProps, BoxProps } from '@mui/material'; export interface HeaderNavigationLinkProps extends ButtonBaseProps { /** * Displayed navigation text, can be provided as children as well */ label?: ReactNode; /** * Marks item currently active * @default false */ active?: boolean; /** * Indicates external link * @default false */ external?: boolean; /** * Expect icon component that will be rendered after the label */ icon?: ReactNode; /** * Change link into extended mobile version */ extend?: boolean; /** * Properties applied to wrapper of label */ labelWrapperProps?: BoxProps; /** * Properties applied to default label */ labelProps?: BoxProps; /** * Properties applied to selected label */ selectedLabelProps?: BoxProps; } /** * Component to render styled button in the header */ export declare const HeaderNavigationLink: FC;