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"; /** * Move Media * * @remarks * Move one or many media to a different folder and optionally to a specific subfolder. * Max 100 media per request, and max 10 requests in 5 minutes. * Note: this is a different rate limit than applies to the rest of the api! * * If a subfolder_id is provided, media will be moved to that subfolder. The subfolder * must belong to the specified folder. * * Returns a Background Job as the move is async. * * ## Requires api token with one of the following permissions * ``` * Read, update & delete anything * ``` */ export declare function mediaMove(client: WistiaCore, request: operations.PutMediasMoveRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=mediaMove.d.ts.map