import { WithImageElement } from './with-image'; import { ZEmptyState_Props } from '@zurich/dev-utils/code/EmptyState'; /** ## `` * * Component docs. */ export declare class ZEmptyState extends WithImageElement implements ZEmptyState_Props { readonly _name = "empty-state"; header?: ZEmptyState_Props['header']; content?: ZEmptyState_Props['content']; pictogram?: ZEmptyState_Props['pictogram']; render(): import('lit-html').TemplateResult<1>; get hasActions(): true | undefined; static styles: import('lit').CSSResult; } declare global { interface HTMLElementTagNameMap { 'z-empty-state': ZEmptyState; } }