export declare const setStoreValue: (key: string, value: string | object | null) => void; export declare const getStoreValue: (key: string) => string | unknown | null; export declare const deleteStoreValue: (key: string) => void; export declare const clearStore: () => void;