///
///
import fs from "fs";
import path from "path";
import { FILE_INFO } from "../@types/types";
import { ElementCompact } from "xml-js";
export default class FileUtil {
static getFileInfo(_path: string): FILE_INFO;
static getExt(file: string): string;
static getFileName(file: string): string;
static getParentPath(file: string): string;
static getFileStat(file: string): fs.Stats | undefined;
static isExist(_path: string): boolean;
static readString(_path: string): string;
static readJson(file: string): any;
static readXmlToJson(file: string): ElementCompact | undefined;
static readFiles(_path: string): {
name: string;
absolutePath: string;
parentPath: path.PlatformPath;
size: fs.Stats;
}[];
static writeString(file: string, content: string): void;
}
//# sourceMappingURL=FileUtil.d.ts.map