import type { UsersRequestBuilder } from "./users/index.js";
import type { UserItemRequestBuilder } from "./users/item/index.js";
declare module "@microsoft/msgraph-beta-sdk" {
    interface GraphBetaServiceClient {
        /**
         * Provides operations to manage the users singleton.
         */
        get users(): UsersRequestBuilder;
        /**
         * Provides operations to manage the currently signed-in user.
         */
        get me(): UserItemRequestBuilder;
    }
}
export * from "./usersServiceClient.js";
//# sourceMappingURL=index.d.ts.map