import { Implementation, ImplementationOptions } from "../implementation.js"; export declare function getItem(db: LocalForage, key: string): Promise; export declare function setItem(db: LocalForage, key: string, val: T): Promise; export declare function removeItem(db: LocalForage, key: string): Promise; export declare function clear(db: LocalForage): Promise; export declare function implementation({ name }: ImplementationOptions): Implementation;