import { EmptyStateProps } from './types/EmptyState.props.ts'; import { FC } from 'react'; /** * Centered placeholder for empty data states. Renders a heading `title`, * a descriptive paragraph, and an optional `action` slot for a call-to-action * button or link. */ declare const EmptyState: FC; export default EmptyState;