export type BackupType = 'manual' | 'scheduled' export type BackupStatus = 'completed' | 'in_progress' | 'failed' export interface Backup { _id: string serverId: string filename: string filePath: string fileSize: number type: BackupType status: BackupStatus createdBy: string createdAt: string }