import { LitElement } from 'lit'; import { ThemeTypes } from '@viasat/beam-shared/utils/constants'; /** * `bm-empty-state` * * @slot icon - Specify an icon for EmptyState * @slot heading - Specify heading text for EmptyState * @slot body - Specify body text for EmptyState * @slot actions - Add actions to EmptyState */ export declare class BmEmptyState extends LitElement { static styles: import('lit').CSSResult; /** * Specify heading text for EmptyState */ heading?: string; /** * Specify body text for EmptyState */ body?: string; /** * Specify action for EmptyState */ actions?: HTMLSlotElement; /** * Specify the theme of EmptyState. By default it inherits the theme from the parent */ theme?: ThemeTypes; render(): import('lit-html').TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'bm-empty-state': BmEmptyState; } } //# sourceMappingURL=EmptyState.d.ts.map