import { WistiaCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import * as errors from "../models/errors/index.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { WistiaError } from "../models/errors/wistiaerror.js"; import * as operations from "../models/operations/index.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Bulk Tag Media * * @remarks * This method accepts a list of medias to tag. It processes requests asynchronously and will return a background_job_status object rather than the typical Media response object. * * The tags will be added to the existing tags on each media file, not replaced. * * ## Requires api token with one of the following permissions * ``` * Read, update & delete anything * ``` */ export declare function taggingsPostTaggingsBulkCreate(client: WistiaCore, request: operations.PostTaggingsBulkCreateRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=taggingsPostTaggingsBulkCreate.d.ts.map