///
import { PathLike } from "fs";
export default class Store> {
private path;
private defaults;
private static __classIdentifier;
private __internalValue;
constructor(path: string, defaults?: T, __class?: symbol | null);
static from(path: PathLike, defaults?: T): Store;
clear(): Store;
get age(): number;
get value(): T;
set value(newValue: T);
}