import { LockOptions, LockResponse, WebDAVClientContext, WebDAVMethodOptions } from "../types"; export declare function lock(context: WebDAVClientContext, path: string, options?: LockOptions): Promise; export declare function unlock(context: WebDAVClientContext, path: string, token: string, options?: WebDAVMethodOptions): Promise;