import { type RestoreSessionBase } from '@microsoft/msgraph-beta-sdk/models/index.js';
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
 * Provides operations to call the activate method.
 */
export interface ActivateRequestBuilder extends BaseRequestBuilder<ActivateRequestBuilder> {
    /**
     * Activate a draft restoreSessionBase object to restore a protection unit. The following points apply to restoring a protection unit:
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<RestoreSessionBase>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     * @see {@link https://learn.microsoft.com/graph/api/restoresessionbase-activate?view=graph-rest-beta|Find more info here}
     */
    post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<RestoreSessionBase | undefined>;
    /**
     * Activate a draft restoreSessionBase object to restore a protection unit. The following points apply to restoring a protection unit:
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toPostRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
 * Uri template for the request builder.
 */
export declare const ActivateRequestBuilderUriTemplate = "{+baseurl}/solutions/backupRestore/restoreSessions/{restoreSessionBase%2Did}/activate";
/**
 * Metadata for all the requests in the request builder.
 */
export declare const ActivateRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map