export declare module SysWrapper { function createFile(filePath: string, contents: string): Promise; function createFileFromTemplate(filePath: string, contents: any, templatePath: string): Promise; function createFileRaw(filePath: string, contents: Buffer): Promise; function removePath(filePath: string): Promise; function getFile(filePath: string, content?: any): Promise; function execFile(filePath: string, content?: any): Promise; function execContent(content: any): Promise; function getFileRaw(filePath: string): Promise; function copyFile(from: string, to: string): Promise; function existsPath(filePath: string): Promise; function createJSON(filePath: string, contents: any): Promise; function getJSON(filePath: string): Promise; function createFolder(folder: string): Promise; function renderTemplateFromFile(filePath: string, content: any): Promise; function renderTemplateFromContent(templateContent: string, content: any): Promise; function enumFilesInFolder(folder: string): Promise; }