import { SpaceResource } from '../helpers'; import { DAV, DAVRequestOptions } from './client'; import { WebDavOptions } from './types'; export declare const CopyFilesFactory: (dav: DAV, options: WebDavOptions) => { copyFiles(sourceSpace: SpaceResource, { path: sourcePath, fileId: sourceFileId }: { path?: string; fileId?: string; }, targetSpace: SpaceResource, { path: targetPath, parentFolderId, name }: { path?: string; parentFolderId?: string; name?: string; }, { overwrite, ...opts }?: { overwrite?: boolean; } & DAVRequestOptions): Promise; };