export declare const saveToCache: ({ key, value }: { key: string; value: T; }) => void; export declare const removeFromCache: (key: string) => void; export declare const clearCache: () => void;