import { BaseAPI } from '../../../common/BaseAPI';
import Configuration from '../../../common/Configuration';
import InputTypeResponse from '../../../models/InputTypeResponse';
/**
 * TypeApi - object-oriented interface
 * @export
 * @class TypeApi
 * @extends {BaseAPI}
 */
export default class TypeApi extends BaseAPI {
    constructor(configuration: Configuration);
    /**
     * @summary Get Input Type
     * @param {string} inputId Id of the input
     * @throws {BitmovinError}
     * @memberof TypeApi
     */
    get(inputId: string): Promise<InputTypeResponse>;
}
