import { CSSResultGroup, TemplateResult } from 'lit'; import { SbbElement } from '../core/base-elements.ts'; /** * The `sbb-lead-container` can be used for product pages to display a lead image and following content. * * @slot - Use the unnamed slot to add any content to the container. * @slot image - Use the image slot to provide the lead image. * `sbb-image`, `img` and `picture` elements are supported. * For other elements the aspect ratio has to be set manually. */ export declare class SbbLeadContainerElement extends SbbElement { static readonly elementName: string; static styles: CSSResultGroup; protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-lead-container': SbbLeadContainerElement; } } //# sourceMappingURL=lead-container.component.d.ts.map