import { BaseFile, MemoryFile } from "./base-file"; export declare class MemoryTextFile extends MemoryFile { protected create_default(): any; protected parse_file(content: string): any; protected stringify_file(): any; append: (this: MemoryTextFile | TextFile, line: string | string[]) => void; remove: (this: MemoryTextFile | TextFile, line: string | string[]) => void; section: (this: MemoryTextFile | TextFile, start: string, end: string) => MemoryTextFile; uniqueAppend: (this: MemoryTextFile | TextFile, line: string | string[]) => void; hasLine: (this: MemoryTextFile | TextFile, line: string) => boolean; } export declare class TextFile extends BaseFile { protected create_default(): any; protected parse_file(content: string): any; protected stringify_file(): string; append: (this: MemoryTextFile | TextFile, line: string | string[]) => void; remove: (this: MemoryTextFile | TextFile, line: string | string[]) => void; section: (this: MemoryTextFile | TextFile, start: string, end: string) => MemoryTextFile; uniqueAppend: (this: MemoryTextFile | TextFile, line: string | string[]) => void; hasLine: (this: MemoryTextFile | TextFile, line: string) => boolean; }