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