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 Copy Media * * @remarks * This method accepts a list of medias to copy to a destination folder. It processes requests asynchronously and will return a background_job_status object rather than the typical Media response object. * * Each media will be duplicated and the copy will be placed in the specified destination folder. The original media files will not be affected. * * ## Requires api token with one of the following permissions * ``` * Read, update & delete anything * ``` */ export declare function mediaPutMediasCopy(client: WistiaCore, request: operations.PutMediasCopyRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=mediaPutMediasCopy.d.ts.map