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"; /** * Restore Media * * @remarks * Restores archived medias to your account. This method accepts a list of up to 100 medias to restore per request. It processes requests asynchronously and will return a background_job_status object rather than the typical Media response object. Your account must have access to the Archiving feature to use this method. * * ## Requires api token with one of the following permissions * ``` * Read, update & delete anything * ``` */ export declare function mediaRestore(client: WistiaCore, request: operations.PutMediasRestoreRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=mediaRestore.d.ts.map