import { LitElement } from 'lit'; /** * Empty state can be used when there is no data to display to * describe what the user can do next. Empty state provides * explanation and guidance to help user progress. * * @status ready * @category feedback * @slot - default slot */ export default class EmptyState extends LitElement { static styles: import("lit").CSSResult[]; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'nord-empty-state': EmptyState; } }