import { CSSResultGroup } from 'lit'; import { SbbTitleBase, SbbTitleLevel } from '../../title.ts'; /** * It displays the title of the sidebar. It has to be placed inside an `sbb-sidebar` element. * * @slot - Use the unnamed slot for the content of the sidebar-title. */ export declare class SbbSidebarTitleElement extends SbbTitleBase { static readonly elementName: string; static styles: CSSResultGroup; /** Title level */ accessor level: SbbTitleLevel; constructor(); connectedCallback(): void; } declare global { interface HTMLElementTagNameMap { 'sbb-sidebar-title': SbbSidebarTitleElement; } } //# sourceMappingURL=sidebar-title.component.d.ts.map