///
import FSEntry from './FSEntry';
export default class File extends FSEntry {
content: Buffer | string;
constructor(fullPath: string);
forceOpen(): Promise;
close(): void;
protected load(): Promise;
save(): Promise;
static fetch(fullPath: string): File;
}