import { UsBaseElement } from '../../components/base/UsBaseElement'; import type { TIconsStorageKeys } from '../../components/icon/iconsStorage'; import type { IErrorScreen } from './model/IErrorScreen'; declare global { interface HTMLElementTagNameMap { 'us-error-screen': USErrorScreen; } } export declare class USErrorScreen extends UsBaseElement implements IErrorScreen { static styles: import("lit").CSSResultGroup[]; widgetView: "vertical"; title: string; description: string; actionText: string; actionIconName: TIconsStorageKeys | null; readonly: boolean; render(): import("lit").TemplateResult<1>; handleAction(): void; }