import React from 'react'; interface EmptyStateProps { isSearch?: boolean; searchQuery?: string; customTitle?: string; customSub?: string; onClearSearch?: () => void; showReload?: boolean; } declare const EmptyState: React.NamedExoticComponent; export default EmptyState;