import { LitElement } from 'lit'; import '../Button/Button'; export type ErrorPageType = 'maintenance' | '400' | '401' | '403' | '404' | '408' | '500' | '502' | '503'; declare global { interface HTMLElementTagNameMap { 'ctt-error-page': CttErrorPage; } } export declare class CttErrorPage extends LitElement { static styles: import("lit").CSSResult[]; type: ErrorPageType; imageSrc: string; imageAlt: string; titleText: string; messageText: string; buttonLabel: string; constructor(); private _onActionClick; render(): import("lit-html").TemplateResult<1>; }