import { Infos } from './Infos';
import { StateEnum } from './StateEnum';
/** Currently restored backup */
export interface RestoredBackup {
    /** Backup access informations */
    accessInfos: Infos;
    /** The restore point id */
    restorePointId: number;
    /** The restored backup state */
    state: StateEnum;
}
//# sourceMappingURL=RestoredBackup.d.ts.map