import { Attributes, Component } from 'jinge'; export interface EmptyStateAttrs { rounded?: boolean; size?: string | number; label: string; description?: string; } export declare class EmptyState extends Component { static template: string; rounded: boolean; size: number; label: string; description: string; constructor(attrs: Attributes); }