import { CSSResultGroup, TemplateResult } from 'lit'; import { SbbElement } from '../../core/base-elements.ts'; import { SbbIconSidebarElement } from '../icon-sidebar/icon-sidebar.component.ts'; /** * This is the parent component to one or two ``s and one `` element. * * @slot - Use the unnamed slot to add `sbb-sidebar` and `sbb-sidebar-content` elements. */ export declare class SbbIconSidebarContainerElement extends SbbElement { static readonly elementName: string; static styles: CSSResultGroup; /** The icon-sidebar children. */ get sidebars(): SbbIconSidebarElement[]; /** The icon-sidebar child at the start position. */ get start(): SbbIconSidebarElement | null; /** The icon-sidebar child at the end position. */ get end(): SbbIconSidebarElement | null; protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-icon-sidebar-container': SbbIconSidebarContainerElement; } } //# sourceMappingURL=icon-sidebar-container.component.d.ts.map