import { BaseClient, RequestOptions } from './base-client'; import { ReportDefinitionResponse, ReportDefinitionListResponse } 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 ReportDefinitionsClient * @param {(string)} [url] - The URL of the API endpoint. */ export declare class ReportDefinitionsClient extends BaseClient { /** * Retrieve a list of report definitions for a specified owner. * @method * @name ReportDefinitionsClient#listReportDefinitions * @param {string} owner - The owner id you are requesting data for */ listReportDefinitions(owner: string, $options?: RequestOptions): Promise; /** * Retrieve a report definition by it's ID. * @method * @name ReportDefinitionsClient#getReportDefinition * @param {string} id - The UUID to retrieve. */ getReportDefinition(id: string, $options?: RequestOptions): Promise; }