import type { ReactNode } from 'react'; import type { IconName } from '../../atoms/Icon'; export interface EmptyStateProps { icon?: IconName; title: string; description?: string; action?: ReactNode; className?: string; }