1import { Adapter } from '../Low.js'; 2export declare class TextFile implements Adapter<string> { 3 private filename; 4 private writer; 5 constructor(filename: string); 6 read(): Promise<string | null>; 7 write(str: string): Promise<void>; 8} 9 10