import { CSSResultGroup, PropertyValues, TemplateResult } from 'lit'; import { SbbElement } from '../../core/base-elements.ts'; import { WithListChildren } from '../../core/mixins.ts'; import { SbbNavigationButtonElement } from '../navigation-button/navigation-button.component.ts'; import { SbbNavigationLinkElement } from '../navigation-link/navigation-link.component.ts'; declare const SbbNavigationListElement_base: import('../../core/mixins.ts').AbstractConstructor> & typeof SbbElement; /** * 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 readonly elementName: string; static styles: CSSResultGroup; protected readonly listChildLocalNames: string[]; /** * The label to be shown before the action list. */ accessor label: string; protected willUpdate(changedProperties: PropertyValues>): void; protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-navigation-list': SbbNavigationListElement; } } export {}; //# sourceMappingURL=navigation-list.component.d.ts.map