/// <reference types="node" />
/// <reference types="node" />
import { FileUtil } from '@ohos/hvigor';
import fs from 'fs';
export default class HMFileUtil extends FileUtil {
    static rmSync(path: fs.PathLike, options?: fs.RmOptions): void;
    static unlinkSync(path: fs.PathLike): void;
    static readdirSync(path: fs.PathLike, options?: {
        encoding: BufferEncoding | null;
        withFileTypes?: false | undefined;
        recursive?: boolean | undefined;
    }): string[];
}
