import { CSSResultGroup, TemplateResult } from 'lit'; import { SbbElement } from '../core.ts'; /** * It displays the content in a vertically centered trapezoidal shape. * The component matches the parent element size and positions the panel accordingly. * * @slot - Use the unnamed slot to add text content to the panel */ export declare class SbbTeaserPanelElement extends SbbElement { static readonly elementName: string; static styles: CSSResultGroup; protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-teaser-panel': SbbTeaserPanelElement; } } //# sourceMappingURL=teaser-panel.component.d.ts.map