import { type OutlookCategory, type OutlookCategoryCollectionResponse } from '@microsoft/msgraph-beta-sdk/models/index.js';
import { type CountRequestBuilder } from './count/index.js';
import { type OutlookCategoryItemRequestBuilder } 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 masterCategories property of the microsoft.graph.outlookUser entity.
 */
export interface MasterCategoriesRequestBuilder extends BaseRequestBuilder<MasterCategoriesRequestBuilder> {
    /**
     * Provides operations to count the resources in the collection.
     */
    get count(): CountRequestBuilder;
    /**
     * Provides operations to manage the masterCategories property of the microsoft.graph.outlookUser entity.
     * @param outlookCategoryId The unique identifier of outlookCategory
     * @returns {OutlookCategoryItemRequestBuilder}
     */
    byOutlookCategoryId(outlookCategoryId: string): OutlookCategoryItemRequestBuilder;
    /**
     * A list of categories defined for the user.
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<OutlookCategoryCollectionResponse>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     */
    get(requestConfiguration?: RequestConfiguration<MasterCategoriesRequestBuilderGetQueryParameters> | undefined): Promise<OutlookCategoryCollectionResponse | undefined>;
    /**
     * Create new navigation property to masterCategories for users
     * @param body The request body
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<OutlookCategory>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     */
    post(body: OutlookCategory, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<OutlookCategory | undefined>;
    /**
     * A list of categories defined for the user.
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toGetRequestInformation(requestConfiguration?: RequestConfiguration<MasterCategoriesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
    /**
     * Create new navigation property to masterCategories for users
     * @param body The request body
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toPostRequestInformation(body: OutlookCategory, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
 * A list of categories defined for the user.
 */
export interface MasterCategoriesRequestBuilderGetQueryParameters {
    /**
     * 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 MasterCategoriesRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/outlook/masterCategories{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}";
/**
 * Metadata for all the navigation properties in the request builder.
 */
export declare const MasterCategoriesRequestBuilderNavigationMetadata: Record<Exclude<keyof MasterCategoriesRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
 * Metadata for all the requests in the request builder.
 */
export declare const MasterCategoriesRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map