import type { ICache } from "./types.js"; export interface ICacheParams { id?: string; } export declare const createMemoryCache: (params?: ICacheParams) => ICache;