import { CSSResultGroup, TemplateResult } from 'lit'; import { SbbElement } from '../core/base-elements.ts'; /** * It displays a complex message combining a title, an image, an action and some content. * * @slot image - Use this slot to provide an `sbb-image` component. * @slot title - Use this slot to provide an `sbb-title`. * @slot subtitle - Use this slot to provide a subtitle, must be a paragraph. * @slot legend - Use this slot to provide a legend, must be a paragraph. * @slot action - Use this slot to provide an `sbb-secondary-button`. */ export declare class SbbMessageElement extends SbbElement { static readonly elementName: string; static styles: CSSResultGroup; private _configureTitle; protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-message': SbbMessageElement; } } //# sourceMappingURL=message.component.d.ts.map