import { CSSResultGroup, TemplateResult } from 'lit'; import { SbbLinkBaseElement } from '../core/base-elements.ts'; /** * It displays an image and an action call within a panel. * * @slot - Use the unnamed slot to add text content to the panel * @slot link-content - Link content of the panel * @slot image - The background image that can be a `sbb-image` * @slot chip - The `sbb-chip-label` component that will be displayed on top-left corner */ export declare class SbbTeaserHeroElement extends SbbLinkBaseElement { static readonly elementName: string; static styles: CSSResultGroup; /** Panel link text. */ accessor linkContent: string; private _imageSlotChanged; protected renderTemplate(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-teaser-hero': SbbTeaserHeroElement; } } //# sourceMappingURL=teaser-hero.component.d.ts.map