import { LitElement } from 'lit'; export declare class OkEmptyState extends LitElement { static styles: import("lit").CSSResult; /** Nombre de un ion-icon (def 'file-tray-outline'). */ icon: string; /** Título principal del estado vacío. */ heading?: string; /** Mensaje secundario (muted). */ message?: string; render(): unknown; } declare global { interface HTMLElementTagNameMap { 'ok-empty-state': OkEmptyState; } }