import { type UnifiedStorageQuota } from '@microsoft/msgraph-beta-sdk/models/index.js';
import { type ServicesRequestBuilder } from './services/index.js';
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
 * Provides operations to manage the quota property of the microsoft.graph.userStorage entity.
 */
export interface QuotaRequestBuilder extends BaseRequestBuilder<QuotaRequestBuilder> {
    /**
     * Provides operations to manage the services property of the microsoft.graph.unifiedStorageQuota entity.
     */
    get services(): ServicesRequestBuilder;
    /**
     * Delete navigation property quota for users
     * @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>;
    /**
     * Read the properties and relationships of a unifiedStorageQuota object.
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<UnifiedStorageQuota>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     * @see {@link https://learn.microsoft.com/graph/api/unifiedstoragequota-get?view=graph-rest-beta|Find more info here}
     */
    get(requestConfiguration?: RequestConfiguration<QuotaRequestBuilderGetQueryParameters> | undefined): Promise<UnifiedStorageQuota | undefined>;
    /**
     * Update the navigation property quota in users
     * @param body The request body
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<UnifiedStorageQuota>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     */
    patch(body: UnifiedStorageQuota, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UnifiedStorageQuota | undefined>;
    /**
     * Delete navigation property quota for users
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
    /**
     * Read the properties and relationships of a unifiedStorageQuota object.
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toGetRequestInformation(requestConfiguration?: RequestConfiguration<QuotaRequestBuilderGetQueryParameters> | undefined): RequestInformation;
    /**
     * Update the navigation property quota in users
     * @param body The request body
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toPatchRequestInformation(body: UnifiedStorageQuota, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
 * Read the properties and relationships of a unifiedStorageQuota object.
 */
export interface QuotaRequestBuilderGetQueryParameters {
    /**
     * Expand related entities
     */
    expand?: string[];
    /**
     * Select properties to be returned
     */
    select?: string[];
}
/**
 * Uri template for the request builder.
 */
export declare const QuotaRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/settings/storage/quota{?%24expand,%24select}";
/**
 * Metadata for all the navigation properties in the request builder.
 */
export declare const QuotaRequestBuilderNavigationMetadata: Record<Exclude<keyof QuotaRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
 * Metadata for all the requests in the request builder.
 */
export declare const QuotaRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map