import type { CommandModule } from 'yargs'; interface BackupArgs { url?: string; email?: string; password?: string; } interface BackupExportArgs extends BackupArgs { output: string; } interface BackupImportArgs extends BackupArgs { input: string; } declare const backupCommand: CommandModule; declare const restoreCommand: CommandModule; export { backupCommand, restoreCommand };