/// <reference types="node" />
/// <reference types="node" />
import { FileUtil } from '@ohos/hvigor';
import fs from 'fs';
export declare class PluginFileUtil extends FileUtil {
    static readonly sep: "\\" | "/";
    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[];
    static normalize(filePath: string): string;
    static resolve(...paths: string[]): string;
    static join(...paths: string[]): string;
}
