import { LRU } from "tiny-lru";
interface CacheProps {
    [key: string]: any;
}
declare const cache: LRU<any>;
declare function hashFunction(props: CacheProps, theme: CacheProps): string;
export { cache, hashFunction };
