import React from 'react'; interface EmptyProps { title?: string; image?: string; subtitle?: string; compact?: boolean; } declare const Empty: React.FC; export default Empty;