export declare type PathInfo = { store: string; path?: string; }; export declare function list(pathInfo: PathInfo): Promise; export declare function copy(from: PathInfo, to: PathInfo): Promise; export declare function download(from: PathInfo, destDir: string): Promise; export declare function upload(localFile: string, dest: PathInfo): Promise; export declare function parsePathInfo(storeAndPathStr?: string): { store: string; path: string; };