/// <reference types="node" />
import { BaseEthStorage } from "./ethstorage";
export declare class EthStorage extends BaseEthStorage {
    getFileInfo(pathOrFile: any): {
        isFile: boolean;
        isDirectory: boolean;
        name: any;
        size: any;
        path: any;
    };
    getFileChunk(file: any, fileSize: number, start: number, end: number): Promise<Buffer>;
}
