import Keyv from 'keyv'; /** * The possible caches to test against. * * @public */ export type TestCacheId = 'MEMORY' | 'REDIS_7' | 'VALKEY_8' | 'MEMCACHED_1'; export type TestCacheProperties = { name: string; store: string; dockerImageName?: string; connectionStringEnvironmentVariableName?: string; }; export type Instance = { store: string; connection: string; keyv: Keyv; stop: () => Promise; }; export declare const allCaches: Record;