///
export declare class SystemHelper {
static dirExist(path: string): boolean;
static isDir(path: string): boolean;
static createDir(path: string): Promise;
static removeDir(path: string): boolean;
static writeBuffer(fullPath: string, data: Buffer): Promise;
static readBuffer(fullPath: string): Promise;
}