import type { ActionSlots } from '../../shared/action'; import type { ComponentChildren } from '../../shared/children'; export interface EmptyStateProps extends ActionSlots { /** * The heading of the EmptyState. */ heading?: string; /** * The subheading of the EmptyState. */ subheading?: string; /** * The graphic to display in the EmptyState. The only supported components are `Image` and `Icon`. */ graphic?: ComponentChildren; }