import { TextFile } from "./textFile"; import { JsonFile } from "./jsonFile"; import { YamlFile } from "./yamlFile"; import { File } from "./file"; export { File, TextFile, JsonFile, YamlFile }; export declare const FileBuilder: (path: string) => File;