import { BaseAPI } from '../../../../../../common/BaseAPI';
import Configuration from '../../../../../../common/Configuration';
import CustomdataApi from './customdata/CustomdataApi';
import BitmovinResponse from '../../../../../../models/BitmovinResponse';
import PlayReadyDrm from '../../../../../../models/PlayReadyDrm';
import PaginationResponse from '../../../../../../models/PaginationResponse';
import { PlayReadyDrmListQueryParams, PlayReadyDrmListQueryParamsBuilder } from './PlayReadyDrmListQueryParams';
/**
 * PlayreadyApi - object-oriented interface
 * @export
 * @class PlayreadyApi
 * @extends {BaseAPI}
 */
export default class PlayreadyApi extends BaseAPI {
    customdata: CustomdataApi;
    constructor(configuration: Configuration);
    /**
     * @summary Add PlayReady DRM to an MP4 muxing
     * @param {string} encodingId Id of the encoding.
     * @param {string} muxingId Id of the MP4 muxing.
     * @param {PlayReadyDrm} playReadyDrm The PlayReady DRM to be created
     * @throws {BitmovinError}
     * @memberof PlayreadyApi
     */
    create(encodingId: string, muxingId: string, playReadyDrm?: PlayReadyDrm): Promise<PlayReadyDrm>;
    /**
     * @summary Delete PlayReady DRM from an MP4 muxing
     * @param {string} encodingId Id of the encoding.
     * @param {string} muxingId Id of the MP4 muxing.
     * @param {string} drmId Id of the PlayReady DRM configuration.
     * @throws {BitmovinError}
     * @memberof PlayreadyApi
     */
    delete(encodingId: string, muxingId: string, drmId: string): Promise<BitmovinResponse>;
    /**
     * @summary PlayReady DRM Details of an MP4 muxing
     * @param {string} encodingId Id of the encoding.
     * @param {string} muxingId Id of the MP4 muxing.
     * @param {string} drmId Id of the PlayReady DRM configuration.
     * @throws {BitmovinError}
     * @memberof PlayreadyApi
     */
    get(encodingId: string, muxingId: string, drmId: string): Promise<PlayReadyDrm>;
    /**
     * @summary List PlayReady DRMs of an MP4 muxing
     * @param {string} encodingId Id of the encoding.
     * @param {string} muxingId Id of the MP4 muxing.
     * @param {*} [queryParameters] query parameters for filtering, sorting and pagination
     * @throws {BitmovinError}
     * @memberof PlayreadyApi
     */
    list(encodingId: string, muxingId: string, queryParameters?: PlayReadyDrmListQueryParams | ((q: PlayReadyDrmListQueryParamsBuilder) => PlayReadyDrmListQueryParamsBuilder)): Promise<PaginationResponse<PlayReadyDrm>>;
}
