declare class Saver {
    static load(filepath?: string): any;
    static convertJSONToDnD(filepath?: string): void;
    static convertDnDToJSON(filepath?: string): void;
    static save(filepath?: string, inputData?: {}): void;
    static finish(outputDir: any, question: any, data: any, defaultName: any, cb: any): void;
}
export default Saver;
