import { LitElement, PropertyValueMap } from 'lit'; import { BpTypeElement } from '@blueprintui/components/internals'; /** * ```typescript * import '@blueprintui/components/include/alert.js'; * ``` * * ```html * * alert * * ``` * * @summary The alert group component is used to inform users of important information or to provide feedback on an action they have taken. * @element bp-alert-group * @since 1.0.0 * @slot - slot for content * @cssprop --background * @cssprop --color * @cssprop --padding * @cssprop --border-radius */ export declare class BpAlertGroup extends LitElement implements Pick { /** determine the visual status state */ accessor status: 'accent' | 'success' | 'warning' | 'danger'; /** determine the visual styles for top/pinned banners */ accessor type: 'banner'; static styles: CSSStyleSheet[]; render(): import("lit").TemplateResult<1>; connectedCallback(): void; protected updated(props: PropertyValueMap): void; }