import * as React from 'react'; interface IIconProps { title: string; icon: 'settings' | string; attention?: boolean; onClick?: (event: React.MouseEvent) => void; href?: string; target?: string; } export declare const NavbarNavMenuIcon: (props: IIconProps) => JSX.Element; export {};