/// declare const executeAsync: (command: string) => Promise; declare const writeFileAsnyc: (path: string, data: Buffer) => Promise; declare const readFileAsync: (path: string) => Promise; declare const unlinkAsync: (path: string) => Promise; export { executeAsync, writeFileAsnyc, readFileAsync, unlinkAsync };