import { ButtonIcon } from '@proximus/lavender-button-icon'; import { Container } from '@proximus/lavender-container'; import { Icon } from '@proximus/lavender-icon'; import { PxElement } from '@proximus/lavender-common'; export declare const statusCardStateValues: string[]; export declare const statusCardBackgroundColorValues: string[]; export declare class StatusCard extends PxElement { static nativeName: string; private template; constructor(); static get observedAttributes(): string[]; connectedCallback(): void; attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void; updateBackgroundColor(newValue: string, allowedValues: string[]): void; updateState(state: string): void; close(): void; get $closeButtonSlot(): ButtonIcon; get $statusIcon(): Icon; get $container(): Container; get $children(): NodeListOf; get state(): string | null; set state(value: string | null); get inverted(): boolean; set inverted(value: boolean); get statusIconAriaLabel(): string | null; set statusIconAriaLabel(value: string | null); get backgroundColor(): string | null; set backgroundColor(value: string | null); }