import { SpaceResource } from '../helpers'; import { WebDavOptions } from './types'; import { DAV, DAVRequestOptions } from './client'; export declare const RestoreFileVersionFactory: (dav: DAV, options: WebDavOptions) => { restoreFileVersion(space: SpaceResource, { id, parentFolderId, name, path }: { id?: string; parentFolderId?: string; name?: string; path?: string; }, versionId: string, opts?: DAVRequestOptions): Promise; };