import { BaseClient, RequestOptions } from './base-client'; import { Dictionary } from './model'; /** * Welcome to the Key Telematics Fleet API specification. This document outlines the REST routes and data structures returned by the API and offers examples of usage. The API publishes a [swagger](https://swagger.io/) specification that can be used to [generate a client library](https://github.com/swagger-api/swagger-codegen) for your language of choice. The latest swagger file is available for download from the following link: [https://api.eu1.kt1.io/fleet/v2/swagger.json](https://api.eu1.kt1.io/fleet/v2/swagger.json) * @class TranslateClient * @param {(string)} [url] - The URL of the API endpoint. */ export declare class TranslateClient extends BaseClient { /** * Exports the language strings for the specified language. * @method * @name TranslateClient#exportLanguage * @param {string} language - The language code */ exportLanguage(language: string, $options?: RequestOptions): Promise; }