'use client'; import { formatDocumentSize } from '@/components/doclist/formatSize'; interface FinderStatusBarProps { itemCount: number; selectedCount: number; totalSize: number; summary?: string; } export function FinderStatusBar({ itemCount, selectedCount, totalSize, summary, }: FinderStatusBarProps) { return (