import { type ApiRequestBuilder } from './api/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestAdapter } from '@microsoft/kiota-abstractions'; /** * Instantiates a new {@link UrlShortenerClient} and sets the default values. * @param requestAdapter The request adapter to use to execute the requests. */ export declare function createUrlShortenerClient(requestAdapter: RequestAdapter): UrlShortenerClient; /** * The main entry point of the SDK, exposes the configuration and the fluent API. */ export interface UrlShortenerClient extends BaseRequestBuilder { /** * The Api property */ get api(): ApiRequestBuilder; } /** * Uri template for the request builder. */ export declare const UrlShortenerClientUriTemplate = "{+baseurl}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const UrlShortenerClientNavigationMetadata: Record, NavigationMetadata>;