import { JsonValue, KvsStorage } from "@kvs/storage"; import { KVS, KVSOptions } from "@kvs/types"; export type KvsLocalStorageSchema = { [index: string]: JsonValue; }; export type KvsLocalStorage = KVS; export type KvsLocalStorageOptions = KVSOptions & { kvsVersionKey?: string; storeFilePath?: string; storeQuota?: number; }; export declare const kvsLocalStorage: (options: KvsLocalStorageOptions) => Promise>;