import { AfterViewInit, ElementRef } from '@angular/core'; /** * [EmptyState Component](https://pxblue-components.github.io/angular/?path=/info/components-empty-state--readme) * * The `` component can display a particular icon, text, and actions. * Icon components are passed as a child element with the `emptyIcon` attribute - these will typically be a Material icon, PX Blue icon, or Progress Icon. */ export declare class EmptyStateComponent implements AfterViewInit { /** The secondary text to display (second line) */ description: string; /** The primary text to display (first line) */ title: string; /** Used to check if an icon has been provided ngAfterViewInit */ emptyIcon: ElementRef; ngAfterViewInit(): void; }