import { AbstractFile } from "../support/AbstractFile"; import { LocalFile } from "./LocalFile"; /** * Implementation of File interface on node file system */ export declare class NodeFsLocalFile extends AbstractFile implements LocalFile { readonly baseDir: string; path: string; constructor(baseDir: string, path: string); readonly realPath: string; getContentSync(): string; getContent(): Promise; setContent(content: string): Promise; setContentSync(content: string): this; setPath(path: string): Promise; isExecutable(): Promise; isReadable(): Promise; isBinary(): Promise; } //# sourceMappingURL=NodeFsLocalFile.d.ts.map