import { EventEmitter } from '../../stencil-public-runtime'; import type { EmptyStateLayout } from './empty-state.types'; export declare class EmptyState { /** * Optional empty state layout - one of 'large', 'compact' or 'compactBreak' */ layout: EmptyStateLayout; /** * Optional empty state icon */ icon?: string; /** * Empty state header */ header: string; /** * Optional empty state sub header */ subHeader?: string; /** * Optional empty state action */ action?: string; /** * ARIA label for the empty state icon * * @since 3.2.0 */ ariaLabelEmptyStateIcon?: string; /** * Empty state action click event */ actionClick: EventEmitter; render(): any; }