import { type LinkItemProps } from '@atlaskit/menu'; /** * __Link item__ * * Renders an item wrapped in an anchor tag, useful when you have an item that * should change routes using native browser navigation. For SPA transitions use * a [custom item](https://atlassian.design/components/side-navigation/examples#custom-item) * with the respective router logic. * * - [Examples](https://atlassian.design/components/side-navigation/examples#link-item) * - [Code](https://atlassian.design/components/side-navigation/code) */ declare const LinkItem: React.ForwardRefExoticComponent & React.RefAttributes>; export default LinkItem;