export declare function createCache(): { get: (key: string) => T | null; set: (key: string, value: T) => void; };