import { BaseClient, RequestOptions } from './base-client'; import { EntitySearchResponse } 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 SearchClient * @param {(string)} [url] - The URL of the API endpoint. */ export declare class SearchClient extends BaseClient { /** * Perform a free text search against the entities available to the user. * @method * @name SearchClient#searchEntities * @param {string} query - The free text query you'd like to search for * @param {boolean} deleted - Specify whether to include deleted items in the response */ searchEntities(query: string, deleted?: boolean, $options?: RequestOptions): Promise; }