import { AWFileSystem } from 'appworks-js'; import { Observable } from 'rxjs'; import { SaveDialogOptions, FileDialogOptions } from "appworks-js/src/plugins/file"; export declare class AWFileSystemService { AWFileSystem: AWFileSystem; constructor(); init(): void; getPath(name: string): Observable<{}>; exists(path: string): Observable<{}>; isDir(path: string): Observable<{}>; createFile(path: string, data?: string, append?: boolean): Observable<{}>; readFile(path: string): Observable<{}>; createDirectory(path: string): Observable<{}>; copy(from: string, to: string): Observable<{}>; open(path: string): Observable<{}>; reveal(path: string): Observable<{}>; getDetails(path: string): Observable<{}>; listDirContents(path: string): Observable<{}>; showSaveDialog(opts: SaveDialogOptions): Observable<{}>; showDirSelector(opts: SaveDialogOptions): Observable<{}>; showFileSelector(opts: FileDialogOptions): Observable<{}>; }