import React from 'react'; export interface HeaderButtonProps extends React.ButtonHTMLAttributes { /** Whether the button is in active/pressed state */ isActive?: boolean; /** Icon to display in the button */ icon: React.ReactNode; /** Render the shared `UnreadDot` at the icon's top-right (the * notifications-bell treatment, promoted to the cell primitive so * indicator cells never copy the dot markup). */ showUnreadDot?: boolean; /** Additional class names */ className?: string; } export declare function HeaderButton({ isActive, icon, showUnreadDot, className, ...props }: HeaderButtonProps): React.JSX.Element; export default HeaderButton; //# sourceMappingURL=header-button.d.ts.map