import { RPCBase } from "../rpcBase"; export declare function FileManager(this: RPCBase): { list: (path: string) => Promise; rename: (oldName: string, newName: string) => Promise>; removeFiles: (fileName: string) => Promise>; getFileNames: (directory: string) => Promise; downloadPiece: (fileName: string, offset: number, needLength: boolean) => Promise; }; //# sourceMappingURL=FileManager.d.ts.map