import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; interface ExportStatisticsProps { stats: { total: number; successful: number; failed: number; queueLength: number; }; } export function ExportStatistics({ stats }: ExportStatisticsProps) { return ( Export Statistics
Total Exports {stats.total}
Successful {stats.successful}
Failed {stats.failed}
Queue Length {stats.queueLength}
); }