import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export declare class RestoreTestingRecoveryPointSelection { SelectionWindowDays?: Value; RecoveryPointTypes: List>; IncludeVaults: List>; ExcludeVaults?: List>; Algorithm: Value; constructor(properties: RestoreTestingRecoveryPointSelection); } export interface RestoreTestingPlanProperties { ScheduleExpression: Value; StartWindowHours?: Value; RecoveryPointSelection: RestoreTestingRecoveryPointSelection; RestoreTestingPlanName: Value; ScheduleExpressionTimezone?: Value; Tags?: List; } export default class RestoreTestingPlan extends ResourceBase { static RestoreTestingRecoveryPointSelection: typeof RestoreTestingRecoveryPointSelection; constructor(properties: RestoreTestingPlanProperties); }