import { Adapter } from 'lowdb'; export declare class Observer { #private; onReadStart: () => void; onReadEnd: (data: T | null) => void; onWriteStart: () => void; onWriteEnd: () => void; constructor(adapter: Adapter); read(): Promise; write(arg: T): Promise; }