import { IFileAdapter } from "../IAdapter"; export declare class FileAdapter implements IFileAdapter { readonly filename: string; private readonly fsync; constructor(filename: string, fsync: boolean); readAsync(): Promise; writeAsync(data: string): Promise; }