import { type CloudCommunications } from '@microsoft/msgraph-sdk/models/index.js';
import { type CallRecordsRequestBuilder } from './callRecords/index.js';
import { type CallsRequestBuilder } from './calls/index.js';
import { type GetPresencesByUserIdRequestBuilder } from './getPresencesByUserId/index.js';
import { type OnlineMeetingsRequestBuilder } from './onlineMeetings/index.js';
import { type PresencesRequestBuilder } from './presences/index.js';
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
 * Provides operations to manage the cloudCommunications singleton.
 */
export interface CommunicationsRequestBuilder extends BaseRequestBuilder<CommunicationsRequestBuilder> {
    /**
     * Provides operations to manage the callRecords property of the microsoft.graph.cloudCommunications entity.
     */
    get callRecords(): CallRecordsRequestBuilder;
    /**
     * Provides operations to manage the calls property of the microsoft.graph.cloudCommunications entity.
     */
    get calls(): CallsRequestBuilder;
    /**
     * Provides operations to call the getPresencesByUserId method.
     */
    get getPresencesByUserId(): GetPresencesByUserIdRequestBuilder;
    /**
     * Provides operations to manage the onlineMeetings property of the microsoft.graph.cloudCommunications entity.
     */
    get onlineMeetings(): OnlineMeetingsRequestBuilder;
    /**
     * Provides operations to manage the presences property of the microsoft.graph.cloudCommunications entity.
     */
    get presences(): PresencesRequestBuilder;
    /**
     * Get communications
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<CloudCommunications>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     */
    get(requestConfiguration?: RequestConfiguration<CommunicationsRequestBuilderGetQueryParameters> | undefined): Promise<CloudCommunications | undefined>;
    /**
     * Update communications
     * @param body The request body
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<CloudCommunications>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     */
    patch(body: CloudCommunications, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<CloudCommunications | undefined>;
    /**
     * Get communications
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toGetRequestInformation(requestConfiguration?: RequestConfiguration<CommunicationsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
    /**
     * Update communications
     * @param body The request body
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toPatchRequestInformation(body: CloudCommunications, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
 * Get communications
 */
export interface CommunicationsRequestBuilderGetQueryParameters {
    /**
     * Expand related entities
     */
    expand?: string[];
    /**
     * Select properties to be returned
     */
    select?: string[];
}
/**
 * Uri template for the request builder.
 */
export declare const CommunicationsRequestBuilderUriTemplate = "{+baseurl}/communications{?%24expand,%24select}";
/**
 * Metadata for all the navigation properties in the request builder.
 */
export declare const CommunicationsRequestBuilderNavigationMetadata: Record<Exclude<keyof CommunicationsRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
 * Metadata for all the requests in the request builder.
 */
export declare const CommunicationsRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map