import { SpaceResource } from '../helpers'; /** * Builds a webdav path based on a given `path` or `fileId`. A `path` takes precedence. * * Public spaces currently don't support id-based paths, hence `path` needs to be provided. * Some id-based requests need a resource `name` appended (mkcol, put, copy, move, restore). * In this case, the `fileId` is supposed to be the id of the parent folder. **/ export declare const getWebDavPath: (space: SpaceResource, { fileId, path, name }: { fileId?: string; path?: string; name?: string; }) => string;