import { CSSResultGroup, TemplateResult, LitElement } from 'lit'; import { SbbTitleLevel } from '../title.js'; /** * It displays a complex message combining a title, an image, an action and some content. * * @slot image - Use this slot to provide a sbb-image component. * @slot title - Use this slot to provide title text for the component. * @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 a sbb-button. */ export declare class SbbMessageElement extends LitElement { static styles: CSSResultGroup; /** Content of title. */ titleContent?: string; /** Level of title, it will be rendered as heading tag (e.g., h3). Defaults to level 3. */ titleLevel: SbbTitleLevel; protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-message': SbbMessageElement; } } //# sourceMappingURL=message.d.ts.map