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"; /** * Copy Folder * * @remarks * This copies a folder (previously called project) and all its media and subfolders asynchronously in a background job. * * This method does not copy the folder’s sharing information (i.e. users that could see the old folder will not automatically be able to see the new one). * * For the request you can specify the owner of a new folder by passing an optional parameter. The person you specify must be a Manager in the account. * * The body of the response will contain an object representing the background job that was created. * * ## Requires api token with one of the following permissions * ``` * Read, update & delete anything * ``` */ export declare function foldersPostFoldersIdCopy(client: WistiaCore, request: operations.PostFoldersIdCopyRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=foldersPostFoldersIdCopy.d.ts.map