import { CLIConfig } from '../cli/utils/config'; interface BackupResult { backupId: string; storageKey: string; size: number; duration: number; downloadUrl?: string; } export interface BackupProgressCallback { onProgress?: (bytesProcessed: number) => void; onStage?: (stage: string) => void; } export declare function createBackupStandalone(config: CLIConfig, callbacks?: BackupProgressCallback): Promise; export {};