import { SidebarElement } from "./sidebar-element"; /** * @summary Sidebar item is a selectable navigation item within the sidebar component. * It can be used as a terminal leaf node in the navigation hierarchy (does not support nested children). * Items can optionally wrap anchor links for programmatic navigation to external URLs or routes. * * @slot default - Text content for the item label * @slot icon - Icon to display before the label text (required for level 1 and level 2) * @slot indicator - Display after the label text (optional). Typically used for badges or status indicators. * * See SgdsSidebar for parent component usage and selection events. */ export declare class SgdsSidebarItem extends SidebarElement { static styles: import("lit").CSSResult[]; render(): import("lit").TemplateResult<1>; } export default SgdsSidebarItem;