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