import { BaseAPI } from '../../../../common/BaseAPI';
import Configuration from '../../../../common/Configuration';
import ScheduleApi from './schedule/ScheduleApi';
import ScheduledApi from './scheduled/ScheduledApi';
import StopApi from './stop/StopApi';
import InsertableContent from '../../../../models/InsertableContent';
import PaginationResponse from '../../../../models/PaginationResponse';
import { InsertableContentListQueryParams, InsertableContentListQueryParamsBuilder } from './InsertableContentListQueryParams';
/**
 * InsertableContentApi - object-oriented interface
 * @export
 * @class InsertableContentApi
 * @extends {BaseAPI}
 */
export default class InsertableContentApi extends BaseAPI {
    schedule: ScheduleApi;
    scheduled: ScheduledApi;
    stop: StopApi;
    constructor(configuration: Configuration);
    /**
     * @summary Create Insertable Content
     * @param {string} encodingId Id of the encoding.
     * @param {InsertableContent} insertableContent The insertable content to be created
     * @throws {BitmovinError}
     * @memberof InsertableContentApi
     */
    create(encodingId: string, insertableContent?: InsertableContent): Promise<InsertableContent>;
    /**
     * @summary List Insertable Content
     * @param {string} encodingId Id of the encoding.
     * @param {*} [queryParameters] query parameters for filtering, sorting and pagination
     * @throws {BitmovinError}
     * @memberof InsertableContentApi
     */
    list(encodingId: string, queryParameters?: InsertableContentListQueryParams | ((q: InsertableContentListQueryParamsBuilder) => InsertableContentListQueryParamsBuilder)): Promise<PaginationResponse<InsertableContent>>;
}
