import { type ChatsRequestBuilder } from './chats/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestAdapter } from '@microsoft/kiota-abstractions'; /** * The main entry point of the SDK, exposes the configuration and the fluent API. */ export interface ChatsServiceClient extends BaseRequestBuilder { /** * Provides operations to manage the collection of chat entities. */ get chats(): ChatsRequestBuilder; } /** * Instantiates a new ChatsServiceClient and sets the default values. * @param requestAdapter The request adapter to use to execute the requests. */ export declare function createChatsServiceClient(requestAdapter: RequestAdapter): ChatsServiceClient; /** * Metadata for all the navigation properties in the request builder. */ export declare const ChatsServiceClientNavigationMetadata: Record, NavigationMetadata>; /** * Uri template for the request builder. */ export declare const ChatsServiceClientUriTemplate = "{+baseurl}"; //# sourceMappingURL=chatsServiceClient.d.ts.map