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