///
import { PathLike } from 'fs';
import { Adapter, SyncAdapter } from '../../core/Low.js';
export declare class JSONFile implements Adapter {
#private;
constructor(filename: PathLike);
read(): Promise;
write(obj: T): Promise;
}
export declare class JSONFileSync implements SyncAdapter {
#private;
constructor(filename: PathLike);
read(): T | null;
write(obj: T): void;
}