import { type Store } from './store.ts'; import { type CacheOptions } from './types.ts'; /** * Define cache configuration */ export declare function defineConfig>(config: CacheOptions & { default: keyof KnownCaches; stores: KnownCaches; }): CacheOptions & { default: keyof KnownCaches; stores: KnownCaches; };