import { File } from "./file"; export declare class TextFile implements File { readonly path: string; constructor(path: string); write(value: any): void; read(): string; protected checkAccess(path: string, mode: number): boolean; isReadable(): boolean; isReadWritable(): boolean; create(): boolean; remove(): void; exists(): boolean; fullname(): string; extname(): string; name(): string; }