import { Config } from "./config"; import { File } from "../file"; export declare abstract class ConfigFile extends Config { protected file: File; constructor(filePath: string, defaultConfig?: Type); fileExist(): boolean; isValid(): boolean; private createIfNotExistAndWrite; set(config: any): boolean; setEntry(key: keyof Type, value: any): boolean; deleteEntry(key: keyof Type): boolean; }