import { type UsersRequestBuilder } from './users/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestAdapter } from '@microsoft/kiota-abstractions'; import { UserItemRequestBuilder } from './users/item/index.js'; /** * Instantiates a new UsersServiceClient and sets the default values. * @param requestAdapter The request adapter to use to execute the requests. */ export declare function createUsersServiceClient(requestAdapter: RequestAdapter): UsersServiceClient; /** * The main entry point of the SDK, exposes the configuration and the fluent API. */ export interface UsersServiceClient extends BaseRequestBuilder { /** * Provides operations to manage the collection of user entities. */ get users(): UsersRequestBuilder; /** * Provides operations to manage the currently signed-in user. */ get me(): UserItemRequestBuilder; } /** * Metadata for all the navigation properties in the request builder. */ export declare const UsersServiceClientNavigationMetadata: Record, NavigationMetadata>; /** * Uri template for the request builder. */ export declare const UsersServiceClientUriTemplate = "{+baseurl}"; //# sourceMappingURL=usersServiceClient.d.ts.map