import { Plus } from 'lucide-preact'; import type { BackupDestinationRecord, BackupDestinationType } from '@/lib/api/backup'; import { formatDateTime, getDestinationTypeLabel } from '@/lib/backup-center'; import { t } from '@/lib/i18n'; interface BackupDestinationSidebarProps { destinations: BackupDestinationRecord[]; selectedDestinationId: string | null; disableWhileBusy: boolean; showAddChooser: boolean; onSelectDestination: (destinationId: string) => void; onToggleAddChooser: () => void; onAddDestination: (type: BackupDestinationType) => void; } export function BackupDestinationSidebar(props: BackupDestinationSidebarProps) { return ( ); }