import { ElementType, FC } from 'react'; import { IconButtonProps, TooltipProps, BadgeProps } from '@mui/material'; export interface HeaderButtonProps extends IconButtonProps { /** * Label for the tooltip or the text button */ label?: TooltipProps['title']; /** * Change icon button with tooltip into button */ extend?: boolean; /** * Properties applied to tooltip */ tooltipProps?: Partial; /** * Properties applied to badge */ badgeProps?: BadgeProps; } /** * IconButton for the action links */ export declare const HeaderButton: FC;