import { type PolicyDeletableRoot } from '@microsoft/msgraph-beta-sdk/models/index.js';
import { type CrossTenantPartnersRequestBuilder } from './crossTenantPartners/index.js';
import { type CrossTenantSyncPolicyPartnersRequestBuilder } from './crossTenantSyncPolicyPartners/index.js';
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
 * Provides operations to manage the deletedItems property of the microsoft.graph.policyRoot entity.
 */
export interface DeletedItemsRequestBuilder extends BaseRequestBuilder<DeletedItemsRequestBuilder> {
    /**
     * Provides operations to manage the crossTenantPartners property of the microsoft.graph.policyDeletableRoot entity.
     */
    get crossTenantPartners(): CrossTenantPartnersRequestBuilder;
    /**
     * Provides operations to manage the crossTenantSyncPolicyPartners property of the microsoft.graph.policyDeletableRoot entity.
     */
    get crossTenantSyncPolicyPartners(): CrossTenantSyncPolicyPartnersRequestBuilder;
    /**
     * Delete navigation property deletedItems for policies
     * @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>;
    /**
     * Policies that support soft-delete functionality and can be restored within 30 days.
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<PolicyDeletableRoot>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     */
    get(requestConfiguration?: RequestConfiguration<DeletedItemsRequestBuilderGetQueryParameters> | undefined): Promise<PolicyDeletableRoot | undefined>;
    /**
     * Update the navigation property deletedItems in policies
     * @param body The request body
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<PolicyDeletableRoot>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     */
    patch(body: PolicyDeletableRoot, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<PolicyDeletableRoot | undefined>;
    /**
     * Delete navigation property deletedItems for policies
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
    /**
     * Policies that support soft-delete functionality and can be restored within 30 days.
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toGetRequestInformation(requestConfiguration?: RequestConfiguration<DeletedItemsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
    /**
     * Update the navigation property deletedItems in policies
     * @param body The request body
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toPatchRequestInformation(body: PolicyDeletableRoot, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
 * Policies that support soft-delete functionality and can be restored within 30 days.
 */
export interface DeletedItemsRequestBuilderGetQueryParameters {
    /**
     * Expand related entities
     */
    expand?: string[];
    /**
     * Select properties to be returned
     */
    select?: string[];
}
/**
 * Uri template for the request builder.
 */
export declare const DeletedItemsRequestBuilderUriTemplate = "{+baseurl}/policies/deletedItems{?%24expand,%24select}";
/**
 * Metadata for all the navigation properties in the request builder.
 */
export declare const DeletedItemsRequestBuilderNavigationMetadata: Record<Exclude<keyof DeletedItemsRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
 * Metadata for all the requests in the request builder.
 */
export declare const DeletedItemsRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map