import React from 'react'; import { Download } from 'lucide-react'; interface DownloadAllProps { onDownloadAll: () => void; count: number; } export function DownloadAll({ onDownloadAll, count }: DownloadAllProps) { return ( ); }