import { BackupContainer } from './backup/BackupContainer';
import { BackupStatus } from './backup/BackupStatus';
/** Backup Cloud assigned to this server */
export interface BackupCloud {
    /** Agreement ids waiting for validation */
    agreements?: number[];
    /** Archive space info. */
    archive?: BackupContainer;
    /** Status of the container. */
    status: BackupStatus;
    /** Storage space info. */
    storage?: BackupContainer;
}
//# sourceMappingURL=BackupCloud.d.ts.map