import { PropertyValues, TemplateResult } from 'lit'; import { SbbElement } from '../../core/base-elements.ts'; import { WithListChildren } from '../../core/mixins.ts'; import { SbbBlockLinkButtonElement, SbbBlockLinkElement, SbbBlockLinkStaticElement, SbbLinkSize } from '../../link.ts'; import { SbbTitleLevel } from '../../title.ts'; export declare const linkListBaseStyle: import('lit').CSSResult; declare const SbbLinkListBaseElement_base: import('../../core/mixins.ts').AbstractConstructor & import('../../core/mixins.ts').AbstractConstructor> & typeof SbbElement; /** * 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 SbbLinkListBaseElement extends SbbLinkListBaseElement_base { protected readonly listChildLocalNames: string[]; /** The title text we want to show before the list. */ accessor titleContent: string; /** The semantic level of the title, e.g. 2 = h2. */ accessor titleLevel: SbbTitleLevel; /** * Text size of the nested sbb-block-link instances. * This will overwrite the size attribute of nested sbb-block-link instances. * @default 's' / 'xs' (lean) */ accessor size: SbbLinkSize; protected willUpdate(changedProperties: PropertyValues>): void; protected render(): TemplateResult; } export {}; //# sourceMappingURL=link-list-base.d.ts.map