import React from "react";
/**
* The `SidenavItem` component is used to display a single item in the sidenav.
*
* @example
* ```html
*
* Home
*
*
*
*
*
* Nested Link
*
*
* ```
*/
export declare function SidenavItem({ children, className, selected, }: {
/**
* Should be a link or button without any classes or styles applied.
*/
children: React.ReactNode;
className?: string;
/**
* Whether the sidenav item is selected.
*/
selected?: boolean;
}): React.JSX.Element;
//# sourceMappingURL=SidenavItem.d.ts.map