import { type RestorePoint } from '@microsoft/msgraph-beta-sdk/models/index.js';
import { type ProtectionUnitRequestBuilder } from './protectionUnit/index.js';
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
 * Provides operations to manage the restorePoints property of the microsoft.graph.backupRestoreRoot entity.
 */
export interface RestorePointItemRequestBuilder extends BaseRequestBuilder<RestorePointItemRequestBuilder> {
    /**
     * Provides operations to manage the protectionUnit property of the microsoft.graph.restorePoint entity.
     */
    get protectionUnit(): ProtectionUnitRequestBuilder;
    /**
     * Delete navigation property restorePoints for solutions
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     */
    delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
    /**
     * List of restore points in the tenant.
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<RestorePoint>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     */
    get(requestConfiguration?: RequestConfiguration<RestorePointItemRequestBuilderGetQueryParameters> | undefined): Promise<RestorePoint | undefined>;
    /**
     * Update the navigation property restorePoints in solutions
     * @param body The request body
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<RestorePoint>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     */
    patch(body: RestorePoint, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<RestorePoint | undefined>;
    /**
     * Delete navigation property restorePoints for solutions
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
    /**
     * List of restore points in the tenant.
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toGetRequestInformation(requestConfiguration?: RequestConfiguration<RestorePointItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
    /**
     * Update the navigation property restorePoints in solutions
     * @param body The request body
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toPatchRequestInformation(body: RestorePoint, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
 * List of restore points in the tenant.
 */
export interface RestorePointItemRequestBuilderGetQueryParameters {
    /**
     * Expand related entities
     */
    expand?: string[];
    /**
     * Select properties to be returned
     */
    select?: string[];
}
/**
 * Uri template for the request builder.
 */
export declare const RestorePointItemRequestBuilderUriTemplate = "{+baseurl}/solutions/backupRestore/restorePoints/{restorePoint%2Did}{?%24expand,%24select}";
/**
 * Metadata for all the navigation properties in the request builder.
 */
export declare const RestorePointItemRequestBuilderNavigationMetadata: Record<Exclude<keyof RestorePointItemRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
 * Metadata for all the requests in the request builder.
 */
export declare const RestorePointItemRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map