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 SbbNavigationMarkerElement_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`. * * @slot - Use the unnamed slot to add `sbb-navigation-button`/`sbb-navigation-link` elements into the `sbb-navigation-marker`. */ export declare class SbbNavigationMarkerElement extends SbbNavigationMarkerElement_base { static styles: CSSResultGroup; protected readonly listChildLocalNames: string[]; /** * Marker size variant. */ size?: 'l' | 's'; private _currentActiveAction?; private _navigationMarkerResizeObserver; protected willUpdate(changedProperties: PropertyValues>): void; private _updateMarkerActions; connectedCallback(): void; private _checkActiveAction; disconnectedCallback(): void; select(action: SbbNavigationButtonElement | SbbNavigationLinkElement): void; protected firstUpdated(changedProperties: PropertyValues>): void; reset(): void; private _setMarkerPosition; protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-navigation-marker': SbbNavigationMarkerElement; } } export {}; //# sourceMappingURL=navigation-marker.d.ts.map