import { type V2RequestBuilder } from './v2/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 ApiClient extends BaseRequestBuilder { /** * The v2 property */ get v2(): V2RequestBuilder; } /** * Instantiates a new {@link ApiClient} and sets the default values. * @param requestAdapter The request adapter to use to execute the requests. */ export declare function createApiClient(requestAdapter: RequestAdapter): ApiClient; /** * Uri template for the request builder. */ export declare const ApiClientUriTemplate = "{+baseurl}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const ApiClientNavigationMetadata: Record, NavigationMetadata>; //# sourceMappingURL=apiClient.d.ts.map