import { CSSResultGroup, TemplateResult } from 'lit'; import { SbbElement } from '../../core/base-elements.ts'; export type SbbFlipCardImageAlignment = 'after' | 'below'; /** * Combined with a `sbb-flip-card`, it displays its content when the card is not flipped. * * @slot - Use the unnamed slot to provide a title for the `sbb-flip-card-summary`. * @slot image - Use this slot to provide an image for the `sbb-flip-card-summary`. */ export declare class SbbFlipCardSummaryElement extends SbbElement { static readonly elementName: string; static styles: CSSResultGroup; /** The position where to render the image. */ accessor imageAlignment: SbbFlipCardImageAlignment; connectedCallback(): void; protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-flip-card-summary': SbbFlipCardSummaryElement; } } //# sourceMappingURL=flip-card-summary.component.d.ts.map