import React from 'react'; export interface EmptyStateProps { icon?: React.ReactNode; title: string; description?: string; primaryAction?: { label: string; onClick: () => void; }; secondaryAction?: { label: string; onClick: () => void; }; helperAction?: { label: string; onClick: () => void; }; } export declare const EmptyState: React.FC;