import { type ImportedAppleDeviceIdentity, type ImportedAppleDeviceIdentityCollectionResponse } from '@microsoft/msgraph-beta-sdk/models/index.js';
import { type CountRequestBuilder } from './count/index.js';
import { type ImportAppleDeviceIdentityListRequestBuilder } from './importAppleDeviceIdentityList/index.js';
import { type ImportedAppleDeviceIdentityItemRequestBuilder } from './item/index.js';
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
 * Provides operations to manage the importedAppleDeviceIdentities property of the microsoft.graph.depOnboardingSetting entity.
 */
export interface ImportedAppleDeviceIdentitiesRequestBuilder extends BaseRequestBuilder<ImportedAppleDeviceIdentitiesRequestBuilder> {
    /**
     * Provides operations to count the resources in the collection.
     */
    get count(): CountRequestBuilder;
    /**
     * Provides operations to call the importAppleDeviceIdentityList method.
     */
    get importAppleDeviceIdentityList(): ImportAppleDeviceIdentityListRequestBuilder;
    /**
     * Provides operations to manage the importedAppleDeviceIdentities property of the microsoft.graph.depOnboardingSetting entity.
     * @param importedAppleDeviceIdentityId The unique identifier of importedAppleDeviceIdentity
     * @returns {ImportedAppleDeviceIdentityItemRequestBuilder}
     */
    byImportedAppleDeviceIdentityId(importedAppleDeviceIdentityId: string): ImportedAppleDeviceIdentityItemRequestBuilder;
    /**
     * The imported Apple device identities.
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<ImportedAppleDeviceIdentityCollectionResponse>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     */
    get(requestConfiguration?: RequestConfiguration<ImportedAppleDeviceIdentitiesRequestBuilderGetQueryParameters> | undefined): Promise<ImportedAppleDeviceIdentityCollectionResponse | undefined>;
    /**
     * Create new navigation property to importedAppleDeviceIdentities for deviceManagement
     * @param body The request body
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<ImportedAppleDeviceIdentity>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     */
    post(body: ImportedAppleDeviceIdentity, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ImportedAppleDeviceIdentity | undefined>;
    /**
     * The imported Apple device identities.
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toGetRequestInformation(requestConfiguration?: RequestConfiguration<ImportedAppleDeviceIdentitiesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
    /**
     * Create new navigation property to importedAppleDeviceIdentities for deviceManagement
     * @param body The request body
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toPostRequestInformation(body: ImportedAppleDeviceIdentity, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
 * The imported Apple device identities.
 */
export interface ImportedAppleDeviceIdentitiesRequestBuilderGetQueryParameters {
    /**
     * Include count of items
     */
    count?: boolean;
    /**
     * Expand related entities
     */
    expand?: string[];
    /**
     * Filter items by property values
     */
    filter?: string;
    /**
     * Order items by property values
     */
    orderby?: string[];
    /**
     * Search items by search phrases
     */
    search?: string;
    /**
     * Select properties to be returned
     */
    select?: string[];
    /**
     * Skip the first n items
     */
    skip?: number;
    /**
     * Show only the first n items
     */
    top?: number;
}
/**
 * Uri template for the request builder.
 */
export declare const ImportedAppleDeviceIdentitiesRequestBuilderUriTemplate = "{+baseurl}/deviceManagement/depOnboardingSettings/{depOnboardingSetting%2Did}/importedAppleDeviceIdentities{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
/**
 * Metadata for all the navigation properties in the request builder.
 */
export declare const ImportedAppleDeviceIdentitiesRequestBuilderNavigationMetadata: Record<Exclude<keyof ImportedAppleDeviceIdentitiesRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
 * Metadata for all the requests in the request builder.
 */
export declare const ImportedAppleDeviceIdentitiesRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map