import { type SolutionsRoot } from '@microsoft/msgraph-beta-sdk/models/index.js';
import { type ApprovalRequestBuilder } from './approval/index.js';
import { type BackupRestoreRequestBuilder } from './backupRestore/index.js';
import { type BookingBusinessesRequestBuilder } from './bookingBusinesses/index.js';
import { type BookingCurrenciesRequestBuilder } from './bookingCurrencies/index.js';
import { type BusinessScenariosRequestBuilder } from './businessScenarios/index.js';
import { type BusinessScenariosWithUniqueNameRequestBuilder } from './businessScenariosWithUniqueName/index.js';
import { type VirtualEventsRequestBuilder } from './virtualEvents/index.js';
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
 * Provides operations to manage the solutionsRoot singleton.
 */
export interface SolutionsRequestBuilder extends BaseRequestBuilder<SolutionsRequestBuilder> {
    /**
     * Provides operations to manage the approval property of the microsoft.graph.solutionsRoot entity.
     */
    get approval(): ApprovalRequestBuilder;
    /**
     * Provides operations to manage the backupRestore property of the microsoft.graph.solutionsRoot entity.
     */
    get backupRestore(): BackupRestoreRequestBuilder;
    /**
     * Provides operations to manage the bookingBusinesses property of the microsoft.graph.solutionsRoot entity.
     */
    get bookingBusinesses(): BookingBusinessesRequestBuilder;
    /**
     * Provides operations to manage the bookingCurrencies property of the microsoft.graph.solutionsRoot entity.
     */
    get bookingCurrencies(): BookingCurrenciesRequestBuilder;
    /**
     * Provides operations to manage the businessScenarios property of the microsoft.graph.solutionsRoot entity.
     */
    get businessScenarios(): BusinessScenariosRequestBuilder;
    /**
     * Provides operations to manage the virtualEvents property of the microsoft.graph.solutionsRoot entity.
     */
    get virtualEvents(): VirtualEventsRequestBuilder;
    /**
     * Provides operations to manage the businessScenarios property of the microsoft.graph.solutionsRoot entity.
     * @param uniqueName Alternate key of businessScenario
     * @returns {BusinessScenariosWithUniqueNameRequestBuilder}
     */
    businessScenariosWithUniqueName(uniqueName: string | undefined): BusinessScenariosWithUniqueNameRequestBuilder;
    /**
     * Get solutions
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<SolutionsRoot>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     */
    get(requestConfiguration?: RequestConfiguration<SolutionsRequestBuilderGetQueryParameters> | undefined): Promise<SolutionsRoot | undefined>;
    /**
     * Update solutions
     * @param body The request body
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<SolutionsRoot>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     */
    patch(body: SolutionsRoot, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<SolutionsRoot | undefined>;
    /**
     * Get solutions
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toGetRequestInformation(requestConfiguration?: RequestConfiguration<SolutionsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
    /**
     * Update solutions
     * @param body The request body
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toPatchRequestInformation(body: SolutionsRoot, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
 * Get solutions
 */
export interface SolutionsRequestBuilderGetQueryParameters {
    /**
     * Expand related entities
     */
    expand?: string[];
    /**
     * Select properties to be returned
     */
    select?: string[];
}
/**
 * Uri template for the request builder.
 */
export declare const SolutionsRequestBuilderUriTemplate = "{+baseurl}/solutions{?%24expand,%24select}";
/**
 * Metadata for all the navigation properties in the request builder.
 */
export declare const SolutionsRequestBuilderNavigationMetadata: Record<Exclude<keyof SolutionsRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
 * Metadata for all the requests in the request builder.
 */
export declare const SolutionsRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map