import { type WindowsAutopilotDeploymentProfile } from '@microsoft/msgraph-beta-sdk/models/index.js';
import { type AssignRequestBuilder } from './assign/index.js';
import { type AssignedDevicesRequestBuilder } from './assignedDevices/index.js';
import { type AssignmentsRequestBuilder } from './assignments/index.js';
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
 * Provides operations to manage the windowsAutopilotDeploymentProfiles property of the microsoft.graph.deviceManagement entity.
 */
export interface WindowsAutopilotDeploymentProfileItemRequestBuilder extends BaseRequestBuilder<WindowsAutopilotDeploymentProfileItemRequestBuilder> {
    /**
     * Provides operations to call the assign method.
     */
    get assign(): AssignRequestBuilder;
    /**
     * Provides operations to manage the assignedDevices property of the microsoft.graph.windowsAutopilotDeploymentProfile entity.
     */
    get assignedDevices(): AssignedDevicesRequestBuilder;
    /**
     * Provides operations to manage the assignments property of the microsoft.graph.windowsAutopilotDeploymentProfile entity.
     */
    get assignments(): AssignmentsRequestBuilder;
    /**
     * Delete navigation property windowsAutopilotDeploymentProfiles for deviceManagement
     * @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>;
    /**
     * Windows auto pilot deployment profiles
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<WindowsAutopilotDeploymentProfile>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     */
    get(requestConfiguration?: RequestConfiguration<WindowsAutopilotDeploymentProfileItemRequestBuilderGetQueryParameters> | undefined): Promise<WindowsAutopilotDeploymentProfile | undefined>;
    /**
     * Update the navigation property windowsAutopilotDeploymentProfiles in deviceManagement
     * @param body The request body
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<WindowsAutopilotDeploymentProfile>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     */
    patch(body: WindowsAutopilotDeploymentProfile, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<WindowsAutopilotDeploymentProfile | undefined>;
    /**
     * Delete navigation property windowsAutopilotDeploymentProfiles for deviceManagement
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
    /**
     * Windows auto pilot deployment profiles
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toGetRequestInformation(requestConfiguration?: RequestConfiguration<WindowsAutopilotDeploymentProfileItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
    /**
     * Update the navigation property windowsAutopilotDeploymentProfiles in deviceManagement
     * @param body The request body
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toPatchRequestInformation(body: WindowsAutopilotDeploymentProfile, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
 * Windows auto pilot deployment profiles
 */
export interface WindowsAutopilotDeploymentProfileItemRequestBuilderGetQueryParameters {
    /**
     * Expand related entities
     */
    expand?: string[];
    /**
     * Select properties to be returned
     */
    select?: string[];
}
/**
 * Uri template for the request builder.
 */
export declare const WindowsAutopilotDeploymentProfileItemRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile%2Did}{?%24expand,%24select}";
/**
 * Metadata for all the navigation properties in the request builder.
 */
export declare const WindowsAutopilotDeploymentProfileItemRequestBuilderNavigationMetadata: Record<Exclude<keyof WindowsAutopilotDeploymentProfileItemRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
 * Metadata for all the requests in the request builder.
 */
export declare const WindowsAutopilotDeploymentProfileItemRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map