import { CSSResultGroup, LitElement, PropertyValues, TemplateResult } from 'lit'; import { WithListChildren } from '../../core/mixins.js'; import { SbbNavigationButtonElement } from '../navigation-button.js'; import { SbbNavigationLinkElement } from '../navigation-link.js'; declare const SbbNavigationListElement_base: import('../../core/mixins.js').AbstractConstructor> & typeof LitElement; /** * It can be used as a container for one or more `sbb-navigation-button`/`sbb-navigation-link` within a `sbb-navigation-section`. * * @slot - Use the unnamed slot to add content to the `sbb-navigation-list`. * @slot label - Use this to provide a label element. */ export declare class SbbNavigationListElement extends SbbNavigationListElement_base { static styles: CSSResultGroup; protected readonly listChildLocalNames: string[]; /** * The label to be shown before the action list. */ label?: string; constructor(); protected willUpdate(changedProperties: PropertyValues>): void; protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-navigation-list': SbbNavigationListElement; } } export {}; //# sourceMappingURL=navigation-list.d.ts.map