import { CSSResultGroup } from 'lit'; import { SbbHorizontalFrom, SbbOrientation } from '../core/interfaces.ts'; import { SbbLinkListBaseElement } from './common/link-list-base.ts'; /** * It displays a list of `sbb-block-link`. * * @slot - Use the unnamed slot to add one or more `sbb-block-link`. * @slot title - Use this slot to provide a title. */ export declare class SbbLinkListElement extends SbbLinkListBaseElement { static readonly elementName: string; static styles: CSSResultGroup; /** Selected breakpoint from which the list is rendered horizontally. */ accessor horizontalFrom: SbbHorizontalFrom | null; /** The orientation in which the list will be shown vertical or horizontal. */ accessor orientation: SbbOrientation; } declare global { interface HTMLElementTagNameMap { 'sbb-link-list': SbbLinkListElement; } } //# sourceMappingURL=link-list.component.d.ts.map