import React from "react";
/**
* The `SidenavItem` component is used to display a single item in the sidenav.
*
* @example
* ```html
*
* Home
*
*
*
*
*
* Nested Link
*
*
* ```
*
* @component
* @see {@link https://planningcenter.github.io/tapestry/?path=/docs/components-sidenav--docs | Storybook Documentation}
*/
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