export declare const writeFile: <T extends {}>(outputFolder: string, fileName: string, data: string | T) => void;
export declare const readFileAsync: (p: string) => Promise<string>;
