import { createDir } from "./createDir";
import { fileMove } from "./fileMove";
declare const xfile: {
    findFileByExt: (base: string, ext: string, cb: (path: string) => {}) => void;
    forEachFileByExt: (base: string, ext: string, cb: (path: string) => {}) => void;
    createDir: typeof createDir;
    fileMove: typeof fileMove;
};
export default xfile;
