import React from 'react'; interface EmptyStateProps { title?: string; subtitle?: string; action?: React.ReactNode; } export declare function EmptyState({ title, subtitle, action }: EmptyStateProps): JSX.Element; export {};