import { ClientOptions } from "@azure-rest/core-client"; import { KeyCredential } from "@azure/core-auth"; import { MapsGeolocationClient } from "./clientDefinitions.js"; /** The optional parameters for the client */ export interface MapsGeolocationClientOptions extends ClientOptions { /** The api version option of the client */ apiVersion?: string; } /** * Initialize a new instance of `MapsGeolocationClient` * @param credentials - uniquely identify client credential * @param options - the parameter for all optional parameters */ export default function createClient(credentials: KeyCredential, { apiVersion, ...options }?: MapsGeolocationClientOptions): MapsGeolocationClient; //# sourceMappingURL=mapsGeolocationClient.d.ts.map