import { LitElement } from 'lit'; /** * An nile-sidebar element. * * @fires count-changed - Indicates when the count changes * @slot - This element has a slot * @csspart button - The button */ export declare class NileSidebar extends LitElement { static styles: import("lit").CSSResult; /** * Button Lab */ title: string; /** * Hide Sidebar */ showSidebar: boolean; get buttonClassMap(): { 'nds-menu--active': boolean; }; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'nile-sidebar': NileSidebar; } }