import { IJSON } from './types'; declare class JSONStore { private readonly db; private hasRead; constructor(dbPath: string); read(flush?: boolean): IJSON; get(key?: string): any; set(key: string, value: any): void; has(key: string): boolean; unset(key: string, value: any): boolean; } export { JSONStore };